mirror of
https://github.com/kou029w/_.git
synced 2025-01-30 13:58:08 +00:00
create ytdlp-webui
This commit is contained in:
parent
ffe2af2621
commit
d314e83b18
2 changed files with 24 additions and 0 deletions
23
ytdlp/compose.yml
Normal file
23
ytdlp/compose.yml
Normal 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
1
ytdlp/config/yt-dlp.conf
Normal file
|
@ -0,0 +1 @@
|
|||
--continue --ignore-errors --no-overwrites --extract-audio --add-metadata --embed-thumbnail
|
Loading…
Add table
Reference in a new issue