testicle/docker/calibre.yaml
Frank "PHiAX" Weggelaar e1a9018ca6 It's a start
2025-12-05 11:02:48 +01:00

22 lines
No EOL
825 B
YAML

########################################################################
# #
# Description: Calibre-Web is a self-hosted e-book manager #
# ReferenceURL: https://docs.linuxserver.io/images/docker-calibre-web/ #
# #
########################################################################
services:
calibre-web:
image: lscr.io/linuxserver/calibre-web:latest
container_name: calibre-web
environment:
- PUID=1000
- PGID=1000
- TZ=Europe/Amsterdam
- OAUTHLIB_RELAX_TOKEN_SCOPE=1 #optional
volumes:
- /path/to/calibre-web/data:/config
- /path/to/calibre/library:/books
ports:
- 8083:8083
restart: unless-stopped