Skip to content

Instantly share code, notes, and snippets.

@Moep90
Created June 27, 2022 04:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Moep90/0476d477a97eb2fcbcd08d4b2cfc4f6d to your computer and use it in GitHub Desktop.
Save Moep90/0476d477a97eb2fcbcd08d4b2cfc4f6d to your computer and use it in GitHub Desktop.
Docker-Compose for Calibre-web
---
version: "2.1"
services:
calibre-web:
image: lscr.io/linuxserver/calibre-web:latest
container_name: calibre-web
environment:
- PUID=1000
- PGID=1000
- TZ=Europe/London
- DOCKER_MODS=linuxserver/calibre-web:calibre #optional
- OAUTHLIB_RELAX_TOKEN_SCOPE=1 #optional
volumes:
- ./data/config:/config
- ./data/books:/books
- <path/to/books/to/add/to/calibre:/books_to_add:ro
ports:
- 8083:8083
restart: unless-stopped
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment