26 lines
840 B
Markdown
26 lines
840 B
Markdown
services:
|
|
youtubedownloader:
|
|
container_name: YouTube-Downloader
|
|
image: tzahi12345/youtubedl-material:nightly
|
|
mem_limit: 6g
|
|
cpu_shares: 768
|
|
healthcheck:
|
|
test: curl -f http://localhost:17442/ || exit 1
|
|
security_opt:
|
|
- no-new-privileges:true
|
|
restart: on-failure:5
|
|
environment:
|
|
UID: 1026
|
|
GID: 100
|
|
ytdl_default_downloader: yt-dlp
|
|
ytdl_use_local_db: true
|
|
ytdl_port: 17442
|
|
write_ytdl_config: true
|
|
ports:
|
|
- 8084:17442
|
|
volumes:
|
|
- /volume2/docker/youtubedl/appdata:/app/appdata:rw
|
|
- /volume2/docker/youtubedl/audio:/app/audio:rw
|
|
- /volume2/docker/youtubedl/subscriptions:/app/subscriptions:rw
|
|
- /volume2/docker/youtubedl/users:/app/users:rw
|
|
- /volume2/docker/youtubedl/video:/app/video:rw |