25 lines
614 B
YAML
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}" |