19 lines
422 B
YAML
19 lines
422 B
YAML
services:
|
|
|
|
calibre-web:
|
|
image: lscr.io/linuxserver/calibre-web:latest
|
|
container_name: calibre-web
|
|
restart: unless-stopped
|
|
|
|
environment:
|
|
- PUID=${PUID:-1000}
|
|
- PGID=${PGID:-10}
|
|
- TZ=${TZ:-Europe/Berlin}
|
|
|
|
volumes:
|
|
- ${BOOKS_PATH:-/volume1/calibreweb/data/books}:/books
|
|
- ${CONFIG_PATH:-/volume1/calibreweb/data/config}:/config
|
|
|
|
ports:
|
|
- "${APP_PORT:-8083}:8083"
|