Files
templates/blueprints/calibre-web/docker-compose.yml
Yury 80657e2a90 Add metadata.db generation for calibre-web (#444)
* Add metadata.db generation for calibre-web

* Attempt to fix template
2025-10-25 17:39:12 -06:00

19 lines
563 B
YAML

services:
calibre-web:
image: lscr.io/linuxserver/calibre-web:latest
restart: unless-stopped
environment:
- PUID=1000
- PGID=1000
- TZ=Etc/UTC
# - DOCKER_MODS=linuxserver/mods:universal-calibre # optional
- OAUTHLIB_RELAX_TOKEN_SCOPE=1 # optional
volumes:
- calibre-config:/config
- calibre-books:/books
- ../files/startup-scripts:/custom-cont-init.d:ro # optional, comment out if you have your own metadata.db file, otherwise it will be created
volumes:
calibre-config: {}
calibre-books: {}