You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

33 lines
1.1 KiB
YAML

3 years ago
# [Calibre](https://calibre-ebook.com/) is a powerful and easy to use e-book
# manager. Users say its outstanding and a must-have. Itll allow you to do
# nearly everything and it takes things a step beyond normal e-book software.
# Its also completely free and open source and great for both casual users and
# computer experts.
3 years ago
---
version: "2.1"
services:
calibre:
image: ghcr.io/linuxserver/calibre
container_name: calibre
environment:
# for UserID
2 years ago
- PUID=${PUID:-1024}
# for GroupID
3 years ago
- PGID=${PGID:-100}
# Specify a timezone to use for example Europe/Amsterdam
3 years ago
- TZ=${TZ:-Europe/Amsterdam}
3 years ago
# Optionally set a password for the gui.
- PASSWORD= # optional
3 years ago
# Optionally pass cli start arguments to calibre.
- CLI_ARGS= # optional
volumes:
# Where calibre should store its database and library.
- ${BASEDIR:-/volume1/docker}/calibre/config:/config
ports:
# Calibre desktop gui.
- 8080:8080
# Calibre webserver gui.
- 8081:8081
restart: unless-stopped