mirror of
https://github.com/abhilesh/self-hosted-docker-setups.git
synced 2026-03-03 02:37:02 +00:00
18 lines
617 B
YAML
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
|