get_iplayer 749 B

1234567891011121314151617181920212223242526272829303132
  1. Running get_iplayer https://hub.docker.com/r/thespad/get_iplayer
  2. Web interface is at:-
  3. http://ip-address:1935/
  4. Gets into the command line on the container so you can add PIDs manually
  5. $ docker exec -it get_iplayer /bin/bash
  6. Add a series by series id
  7. $ get_iplayer --pid-recursive --pid 12345678
  8. docker-compose.yml
  9. version: "2.1"
  10. services:
  11. get_iplayer:
  12. image: ghcr.io/thespad/get_iplayer
  13. container_name: get_iplayer
  14. environment:
  15. - PUID=1000
  16. - PGID=1000
  17. - TZ=Europe/London
  18. - INCLUDERADIO= yes
  19. - BASEURL= #optional
  20. - ENABLEIMPORT= #optional
  21. volumes:
  22. - /home/pi/Docker/get_iplayer/config:/config
  23. - /home/pi/Videos:/downloads
  24. ports:
  25. - 1935:1935
  26. restart: unless-stopped