Files
yt-dlp-web-ui/docker-compose.yml
Marco Piovanello 98f0ea3bd2 fix typo
closes #162
2024-06-30 10:37:22 +02:00

12 lines
363 B
YAML

services:
yt-dlp-webui:
image: marcobaobao/yt-dlp-webui
ports:
- 3033:3033
volumes:
- <your dir>:/downloads # replace <your dir> with a directory on your host system
- <your dir>:/config # directory where config.yml will be stored
healthcheck:
test: curl -f http://localhost:3033 || exit 1
restart: unless-stopped