79 lines
No EOL
2.2 KiB
YAML
Executable file
79 lines
No EOL
2.2 KiB
YAML
Executable file
version: "2.2"
|
|
services:
|
|
# books:
|
|
# image: lscr.io/linuxserver/calibre-web:latest
|
|
# container_name: books
|
|
# hostname: books
|
|
# networks:
|
|
# - netgrimoire
|
|
# volumes:
|
|
# - /data/nfs/Baxter/Books/:/books:shared
|
|
# - /DockerVol/calibre-web/config:/config
|
|
# environment:
|
|
# - TZ=America/Chicago
|
|
# - PGID=999
|
|
# - PUID=1001
|
|
# # - DOCKER_MODS=linuxserver/calibre-web:calibre
|
|
# ports:
|
|
# - 8083:8083
|
|
# restart: unless-stopped
|
|
|
|
# tinymediamanager_service:
|
|
# image: romancin/tinymediamanager:latest
|
|
# container_name: tinymediamanager
|
|
# networks:
|
|
# - netgrimoire
|
|
# ports:
|
|
# - "5803:5800"
|
|
# environment:
|
|
# - USER_ID=1001
|
|
# - GROUP_ID=99
|
|
# - TZ=America/Chicago
|
|
# - VNC_PASSWORD=F@lcon12
|
|
# volumes:
|
|
# - "/DockerVol/tinymediamanager:/config:rw"
|
|
# - "/data/nfs/Baxter:/media:rw"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Calibre-Netgrimoire:
|
|
image: lscr.io/linuxserver/calibre:latest
|
|
container_name: calibre-netgrimoire
|
|
hostname: calibre-netgrimoire
|
|
networks:
|
|
- netgrimoire
|
|
environment:
|
|
- TZ=America/Chicago
|
|
- PGID=999
|
|
- PUID=1001
|
|
volumes:
|
|
- /DockerVol/Calibre/Config:/config
|
|
- /DockerVol/Calibre/Plugins:/plugins
|
|
- /data/nfs/Baxter:/data:shared
|
|
ports:
|
|
- 7070:8080
|
|
- 7081:8081
|
|
restart: unless-stopped
|
|
security_opt:
|
|
- seccomp=unconfined
|
|
|
|
kavita:
|
|
image: kizaing/kavita:latest # Change latest to nightly for latest develop builds (can't go back to stable)
|
|
container_name: kavita
|
|
networks:
|
|
- netgrimoire
|
|
volumes:
|
|
- /data/nfs/Baxter/Comics:/comics:shared # Use as many as you want
|
|
# - ./books:/books #
|
|
- /DockerVol/Kavita/config:/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/Chicago
|
|
- PGID=999
|
|
- PUID=1001
|
|
ports:
|
|
- "8054:5000" # Change the public port (the first 5000) if you have conflicts with other services
|
|
restart: unless-stopped |