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.

21 lines
1.1 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 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 GroupID` \
-e PGID=${PGID:-100} `# for UserID` \
-e TZ=${TZ:-Europe/Amsterdam} `# Specify a timezone to use for example Europe/Amsterdam` \
-e GUAC_USER=abc `# optional` `# Username for the calibre desktop gui.` \
-e GUAC_PASS=900150983cd24fb0d6963f7d28e17f72 `# optional` `# Password's md5 hash for the calibre desktop gui.` \
-e UMASK_SET=022 `# optional` `# for umask setting of Calibre, default if left unset is 022.` \
-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