Files
docker/youtubeDL/docker-compose.yml
2021-09-29 09:46:08 +00:00

25 lines
614 B
YAML

version: "3.4"
services:
ytdl_material:
image: tzahi12345/youtubedl-material:latest
container_name: youtubeDL
environment:
ALLOW_CONFIG_MUTATIONS: 'true'
volumes:
- ./appdata:/app/appdata
- youtubeDL:/app/audio
- ./video:/app/video
- ./subscriptions:/app/subscriptions
- ./users:/app/users
ports:
- "8998:17442"
restart: always
volumes:
youtubeDL:
name: youtubeDL
driver: local
driver_opts:
type: nfs
o: addr=${NFS_SERVER},rw
device: ":${PFAD}"