1
0
Fork 0
mirror of https://github.com/kou029w/_.git synced 2025-01-30 13:58:08 +00:00

create ytdlp-webui

This commit is contained in:
Nebel 2024-10-28 16:25:04 +09:00
parent ffe2af2621
commit d314e83b18
Signed by: nebel
GPG key ID: 79807D08C6EF6460
2 changed files with 24 additions and 0 deletions

23
ytdlp/compose.yml Normal file
View file

@ -0,0 +1,23 @@
services:
webui:
image: ghcr.io/seyys/ytdlp-webui:master
restart: unless-stopped
ports:
- 5000:5000
depends_on:
- redis
worker:
image: ghcr.io/seyys/ytdlp-webui:master
restart: unless-stopped
command: ["celery", "-A", "make_celery", "worker", "--loglevel", "INFO"]
user: 1000:1000
environment:
FILENAME_TEMPLATE: "%(uploader|Unknown)s,%(album|[Unknown Album])s,%(title)s [%(id)s]"
volumes:
- ./downloads:/app/downloads
- ./config:/app/config
depends_on:
- redis
redis:
image: redis:alpine
restart: unless-stopped

1
ytdlp/config/yt-dlp.conf Normal file
View file

@ -0,0 +1 @@
--continue --ignore-errors --no-overwrites --extract-audio --add-metadata --embed-thumbnail