Add Calibre-Web infrastructure

This commit is contained in:
Kroonk
2026-05-21 12:57:15 +02:00
commit d909501b4a
5 changed files with 172 additions and 0 deletions

18
docker-compose.yml Normal file
View File

@@ -0,0 +1,18 @@
services:
calibre-web:
image: lscr.io/linuxserver/calibre-web:latest
container_name: calibre-web
restart: unless-stopped
environment:
- PUID=${PUID:-1000}
- PGID=${PGID:-10}
- TZ=${TZ:-Europe/Berlin}
volumes:
- ${BOOKS_PATH:-/volume1/calibreweb/data/books}:/books
- ${CONFIG_PATH:-/volume1/calibreweb/data/config}:/config
ports:
- "${APP_PORT:-8083}:8083"