13 lines
348 B
YAML
13 lines
348 B
YAML
|
|
services:
|
||
|
|
youtube-video:
|
||
|
|
image: marcobaobao/yt-dlp-webui
|
||
|
|
container_name: youtube-video
|
||
|
|
# ports:
|
||
|
|
# - 3033:3033
|
||
|
|
network_mode: host
|
||
|
|
volumes:
|
||
|
|
- /mnt/qnas_vault/Videos/TV Series/YouTube:/downloads
|
||
|
|
- ./config:/config
|
||
|
|
healthcheck:
|
||
|
|
test: curl -f http://localhost:3033 || exit 1
|
||
|
|
restart: unless-stopped
|