Created
June 27, 2022 04:39
-
-
Save Moep90/0476d477a97eb2fcbcd08d4b2cfc4f6d to your computer and use it in GitHub Desktop.
Docker-Compose for Calibre-web
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
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