15 lines
389 B
YAML
15 lines
389 B
YAML
services:
|
|
ytdlp:
|
|
build: .
|
|
container_name: ytdlp-web
|
|
ports:
|
|
- "8080:8080"
|
|
volumes:
|
|
# All downloaded files land in ./downloads on the host
|
|
- ./downloads:/downloads
|
|
restart: unless-stopped
|
|
environment:
|
|
# Optional: set to a writable path if you want a custom cookies file
|
|
# YT_DLP_COOKIES: /downloads/cookies.txt
|
|
TZ: Europe/Berlin
|