| 1234567891011121314151617181920212223242526272829303132 |
- Running get_iplayer https://hub.docker.com/r/thespad/get_iplayer
- Web interface is at:-
- http://ip-address:1935/
- Gets into the command line on the container so you can add PIDs manually
- $ docker exec -it get_iplayer /bin/bash
- Add a series by series id
- $ get_iplayer --pid-recursive --pid 12345678
- docker-compose.yml
- version: "2.1"
- services:
- get_iplayer:
- image: ghcr.io/thespad/get_iplayer
- container_name: get_iplayer
- environment:
- - PUID=1000
- - PGID=1000
- - TZ=Europe/London
- - INCLUDERADIO= yes
- - BASEURL= #optional
- - ENABLEIMPORT= #optional
- volumes:
- - /home/pi/Docker/get_iplayer/config:/config
- - /home/pi/Videos:/downloads
- ports:
- - 1935:1935
- restart: unless-stopped
|