manga-dlp/docker/docker-compose.yml
Ivan Schaller 6ea0193307
Some checks failed
continuous-integration/drone/push Build is passing
continuous-integration/drone/tag Build is failing
update versions and readme + minor tweaks
2022-05-09 21:07:37 +02:00

25 lines
583 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:
- appnet
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:
appnet:
name: mangadlp
driver: bridge