It's a start

This commit is contained in:
Frank "PHiAX" Weggelaar 2025-12-05 11:02:48 +01:00
parent 302b725dc1
commit e1a9018ca6
34 changed files with 774 additions and 1 deletions

22
docker/calibre.yaml Normal file
View file

@ -0,0 +1,22 @@
########################################################################
# #
# 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