Web desktop docker image for: Calibre
#!/usr/bin/env bash
NAME=calibre
CONTENT_SERVER_PORT=7777
PORT=8080
docker run \
-it \
--name $NAME \
-e USERNAME=user \
-e PASSWORD=secret123 \
-e AUTH=true \
-v "${HOME}/calibre-library:/calibre-library" \
-v "${HOME}/calibre-autoscan:/calibre-autoscan" \
-v "${HOME}/calibre-inbox:/nobody/inbox" \
-p ${CONTENT_SERVER_PORT}:7777 \
-p ${PORT}:32000 \
ivonet/$NAME
| Volume path | Description |
|---|---|
/calibre-library | the calibre-library where calibre will store its e-books |
/calibre-autoscan | folder that will be auto scanned by calibre. Files in this folder will also be auto deleted after the auto import. |
/nobody/inbox | shared folder where you can place e-books you can import at your leisure |
| Port number | Description |
|---|---|
32000 | the application runs here |
7777 | the web interface of of calibre runs here |
Content type
Image
Digest
Size
673.7 MB
Last updated
over 4 years ago
docker pull ivonet/calibre