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.

20 lines
1.0 KiB
Bash

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

# [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.
source ./.env
docker run -d \
--name=calibre \
-e PUID=${PUID:-1024} `# for UserID` \
-e PGID=${PGID:-100} `# for GroupID` \
-e TZ=${TZ:-Europe/Amsterdam} `# specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List).` \
-e PASSWORD= `# optional` `# Optionally set a password for the gui.` \
-e CLI_ARGS= `# optional` `# Optionally pass cli start arguments to calibre.` \
-p 8080:8080 `# Calibre desktop gui.` \
-p 8081:8081 `# Calibre webserver gui.` \
-v ${BASEDIR:-/volume1/docker}/calibre/config:/config `# Where calibre should store its database and library.` \
--restart unless-stopped \
ghcr.io/linuxserver/calibre