mirror of
https://github.com/marcopiovanello/yt-dlp-web-ui.git
synced 2026-07-25 06:54:30 +00:00
15 lines
299 B
YAML
15 lines
299 B
YAML
services:
|
|
app:
|
|
image: marcobaobao/yt-dlp-webui
|
|
volumes:
|
|
- ./downloads:/downloads
|
|
restart: unless-stopped
|
|
nginx:
|
|
image: nginx:alpine
|
|
restart: unless-stopped
|
|
volumes:
|
|
- ./app.conf:/etc/nginx/conf.d/app.conf
|
|
depends_on:
|
|
- app
|
|
ports:
|
|
- 80:80 |