Files
self-hosted-docker-setups/calibre-web/compose.yaml
2024-08-19 13:39:19 +01:00

18 lines
617 B
YAML

services:
calibre-web:
image: linuxserver/calibre-web:latest
container_name: calibre-web
environment:
- PUID=1000
- PGID=1000
- TZ=America/Chicago
# I had some issues with Google's OAuth login and hence added the following two lines
- OAUTHLIB_RELAX_TOKEN_SCOPE=1
- OAUTHLIB_INSECURE_TRANSPORT=1
volumes:
- /home/pi/calibre-web:/config # Config directory (`app.db` is stored here)
- /mnt/nfs-share/eBook_Library:/books # Data directory (All ebooks are stored here)
ports:
- 8083:8083
restart: unless-stopped