An open API service indexing awesome lists of open source software.

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

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