mirror of
https://github.com/Tzahi12345/YoutubeDL-Material.git
synced 2026-03-07 12:00:01 +03:00
30 lines
868 B
YAML
30 lines
868 B
YAML
version: "2"
|
|
services:
|
|
ytdl_material:
|
|
environment:
|
|
ALLOW_CONFIG_MUTATIONS: 'true'
|
|
ytdl_mongodb_connection_string: 'mongodb://ytdl-mongo-db:27017'
|
|
ytdl_use_local_db: 'false'
|
|
write_ytdl_config: 'true'
|
|
restart: always
|
|
depends_on:
|
|
- ytdl-mongo-db
|
|
volumes:
|
|
- ./appdata:/app/appdata
|
|
- ./audio:/app/audio
|
|
- ./video:/app/video
|
|
- ./subscriptions:/app/subscriptions
|
|
- ./users:/app/users
|
|
ports:
|
|
- "8998:17442"
|
|
image: tzahi12345/youtubedl-material:nightly
|
|
ytdl-mongo-db:
|
|
image: mongo
|
|
ports:
|
|
- "27017:27017"
|
|
logging:
|
|
driver: "none"
|
|
container_name: mongo-db
|
|
restart: always
|
|
volumes:
|
|
- ./db/:/data/db |