|
|
@@ -7,4 +7,26 @@ 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
|
|
|
+$ 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
|