diff --git a/yt-dlp-web-ui/docker-compose.yml b/yt-dlp-web-ui/docker-compose.yml new file mode 100644 index 0000000..fc1a8cd --- /dev/null +++ b/yt-dlp-web-ui/docker-compose.yml @@ -0,0 +1,11 @@ +version: '3.9' +services: + yt-dlp-webui: + image: marcobaobao/yt-dlp-webui + ports: + - 3033:3033 + volumes: + - /mnt/docker-media/[Downloads]:/downloads + healthcheck: + test: curl -f http://localhost:3033 || exit 1 + restart: unless-stopped