manga-dlp/docker/docker-compose.yml
Ivan Schaller e016ed8bf7
Some checks failed
continuous-integration/drone/push Build is passing
continuous-integration/drone/tag Build is failing
add docker container
2021-12-24 16:30:50 +01:00

23 lines
549 B
YAML

version: "3"
services:
manga-dlp:
image: olofvndrhr/manga-dlp:latest
container_name: manga-dlp
restart: unless-stopped
security_opt:
- no-new-privileges:true
networks:
- mangadlp
volumes:
- ./downloads/:/app/downloads/ # default manga download directory
- ./mangas.txt:/app/mangas.txt # default file for manga links to download
environment:
- TZ=Europe/Zurich
# - PUID= # custom userid - defaults to 4444
# - PGID= # custom groupid - defaults to 4444
networks:
mangadlp: