Skip to content
Snippets Groups Projects
Commit 9749f3da authored by Aaron Andreas's avatar Aaron Andreas
Browse files

Update README.md

parent 852ffad5
No related branches found
No related tags found
No related merge requests found
# docker-ebookserver # docker-ebookserver
Ebook-Server for IT-internal use. Using Calibre-Web. Ebook-Server for IT-internal use. Using Calibre-Web.
Currently, there is an installation of this running at [the osimage-server](http://osimage.pik-potsdam.de:8080). (Maybe, we will move that later)
## Install ## Install
You will need to get calibre-web first. Just run You will need to get calibre-web first. Just run
```bash ```bash
git clone https://github.com/janeczku/calibre-web.git git clone https://github.com/janeczku/calibre-web.git
...@@ -14,12 +15,17 @@ and put it in this directory, so docker can find it and put it into the image. ...@@ -14,12 +15,17 @@ and put it in this directory, so docker can find it and put it into the image.
Then run Then run
```bash ```bash
docker build -t calibre-web . docker build -t calibre-web .
´´´ ```
to start the build. Afterwards you'll have a docker-image called **'calibre-web'** on your system.
to start the build. Afterwards you'll have a docker-image called **'calibre-web'** on your system. This directory gets copied into the image in the next step.
To run/spawn your container, you will need to run To run/spawn your container, you will need to run
```bash ```bash
docker run -p 8083:8083 -v /path/to/calibre/libary:/ebooks --name myebookserver -d calibre-web docker run -p 8083:8083 -v /path/to/calibre/libary:/ebooks --name myebookserver -d calibre-web
´´´ ```
Now, you can controll your instance by the commands:
```bash
docker start ebookserver
docker stop ebookserver
```
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment