separate configs from compose files

This commit is contained in:
Christoph Califice
2025-12-07 12:30:14 -03:00
parent 295bcba288
commit b0b876869d
1458 changed files with 122 additions and 102596 deletions

View File

@@ -1,15 +1,12 @@
services:
kavita:
image: jvmilazz0/kavita:latest # Using the stable branch from the official dockerhub repo.
container_name: kavita
volumes:
- /mnt/system/Etc/NotPorn:/images # Manga is just an example you can have the name you want. See the following
# - ./comics:/comics # Use as many as you want
# - ./books:/books #
- ./data:/kavita/config # Change './data if you want to have the config files in a different place.
# /kavita/config must not be changed
environment:
- TZ=America/Sao_Paulo
ports:
- "5000:5000" # Change the public port (the first 5000) if you have conflicts with other services
restart: unless-stopped
kavita:
container_name: kavita
image: jvmilazz0/kavita:latest
restart: unless-stopped
ports:
- '5000:5000'
volumes:
- /mnt/system/f95:/images
- /home/ccalifice/docker-data/kavita/config:/kavita/config
environment:
- TZ=America/Sao_Paulo