docker-bits/lsio/calibre/docker-compose.yaml
2022-04-02 00:45:58 +00:00

33 lines
1.1 KiB
YAML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# [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.
---
version: "2.1"
services:
calibre:
image: ghcr.io/linuxserver/calibre
container_name: calibre
environment:
# for UserID
- PUID=${PUID:-1024}
# for GroupID
- PGID=${PGID:-100}
# Specify a timezone to use for example Europe/Amsterdam
- TZ=${TZ:-Europe/Amsterdam}
# Optionally set a password for the gui.
- PASSWORD= # optional
# 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