https://github.com/acaranta/calibre-server
a docker to run http calibre-server , the ebook manager
https://github.com/acaranta/calibre-server
Last synced: 4 months ago
JSON representation
a docker to run http calibre-server , the ebook manager
- Host: GitHub
- URL: https://github.com/acaranta/calibre-server
- Owner: acaranta
- Created: 2015-01-19T06:21:34.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2015-01-19T06:53:59.000Z (over 11 years ago)
- Last Synced: 2025-04-09T14:36:35.040Z (about 1 year ago)
- Size: 113 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
calibre-server (docker)
=====================
Docker container with calibre server installed from git source : ``https://github.com/kovidgoyal/calibre``
Getting the image
-----------------
You can pull it from ``https://registry.hub.docker.com/u/acaranta/calibre-server/`` or clone this repo and build it.
Using your library
------------------
This container exposes the volume **/calibre-lib** and the port **8080**
By default the server is expecting user=calibre, password=calibre
To allow calibre to run **your library** you have to **mount it as a volume** with ``-v /your/library/location:/calibre-lib``
Runnining the container
------------------------
docker run -p 80:8080 -v :/calibre-lib --name calibre-server acaranta/calibre-server
You can pass different user/password to calibre-server:
docker run -p 80:8080 -e USER= -e PASS= -v :/calibre-lib --name calibre-server acaranta/calibre-server