manga-dlp/docker/docker-compose.yml

26 lines
744 B
YAML
Raw Normal View History

2021-12-24 16:30:50 +01:00
version: "3"
services:
manga-dlp:
image: olofvndrhr/manga-dlp:latest
container_name: manga-dlp
restart: unless-stopped
security_opt:
- no-new-privileges:true
networks:
- appnet
2021-12-24 16:30:50 +01:00
volumes:
- ./downloads/:/app/downloads/ # default manga download directory
- ./mangas.txt:/app/mangas.txt # default file for manga links to download
2022-05-29 19:11:38 +02:00
#- ./crontab:/etc/cron.d/mangadlp # path to default crontab
#- ./schedule.sh:/app/schedules/daily.sh # path to the default schedule which is run daily
2021-12-24 16:30:50 +01:00
environment:
- TZ=Europe/Zurich
#- PUID= # custom user id - defaults to 4444
#- PGID= # custom group id - defaults to 4444
2021-12-24 16:30:50 +01:00
networks:
appnet:
name: mangadlp
driver: bridge