Skip to content

Commit a298378

Browse files
- exposed additional directories (see ticket #24)
- added support for setting the Calibre Web application folder (see ticket #27) - updated python `requirements` and `optional requirements`at dockerfile - added Container Directory Structure information at README.md (see ticket #24) - kindlegen archive will be downloaded on container startup into `/calibre-web/kindlegen` and is not directly included in the image anymore - ownership of symlink of `app.db`, `gdrive.db` and `kindlegen` is changed from _root_ to the _calibre_ user & group
1 parent dc20c00 commit a298378

File tree

4 files changed

+127
-19
lines changed

4 files changed

+127
-19
lines changed

CHANGELOG.md

+27
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,30 @@
1+
**2018-04-14 - v1.1.11**
2+
3+
* exposed additional directories (see ticket #24)
4+
`-v /calibre-web/app` - local path for Calibre Web application files
5+
`-v /calibre-web/kindlegen` - local path for Calibre Web kindlegen application
6+
* added support for setting the Calibre Web application folder (see ticket #27);
7+
map volume `-v /calibre-web/app` if you want to use Google Drive
8+
* updated python `requirements` and `optional requirements`at dockerfile according to
9+
- https://github.com/janeczku/calibre-web/blob/master/requirements.txt
10+
- https://github.com/janeczku/calibre-web/blob/master/optional-requirements.txt
11+
* added __Container Directory Structure__ information at README.md (see ticket #24)
12+
* kindlegen archive will be downloaded on container startup into `/calibre-web/kindlegen`
13+
and is not directly included in the image anymore
14+
* ownership of symlink of `app.db`, `gdrive.db` and `kindlegen` is changed from _root_ to the _calibre_ user & group
15+
16+
__Example:__
17+
```
18+
docker create --name=calibre-web --restart=always \
19+
-v /volume1/books/calibre:/books \
20+
-v /volume1/docker/apps/calibre-web/app:/calibre-web/app \
21+
-v /volume1/docker/apps/calibre-web/config:/calibre-web/config \
22+
-v /volume1/docker/apps/calibre-web/kindlegen:/calibre-web/kindlegen \
23+
-e PGID=65539 -e PUID=1029 \
24+
-p 8083:8083 \
25+
technosoft2000/calibre-web
26+
```
27+
128
**2017-11-04 - v1.1.10**
229

330
* added support for a configuration directory (as asked in ticket #13),

Dockerfile

+13-13
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
FROM technosoft2000/alpine-base:3.6-3
22
MAINTAINER Technosoft2000 <[email protected]>
3-
LABEL image.version="1.1.10" \
3+
LABEL image.version="1.1.11" \
44
image.description="Docker image for Calibre Web, based on docker image of Alpine" \
5-
image.date="2017-11-04" \
5+
image.date="2018-04-14" \
66
url.docker="https://hub.docker.com/r/technosoft2000/calibre-web" \
77
url.github="https://github.com/Technosoft2000/docker-calibre-web" \
88
url.support="https://cytec.us/forum"
99

1010
# Set basic environment settings
1111
ENV \
1212
# - VERSION: the docker image version (corresponds to the above LABEL image.version)
13-
VERSION="1.1.10" \
13+
VERSION="1.1.11" \
1414

1515
# - PUSER, PGROUP: the APP user and group name
1616
PUSER="calibre" \
@@ -65,17 +65,19 @@ RUN \
6565

6666
# install additional python packages:
6767
### REQUIRED ###
68+
### see https://github.com/janeczku/calibre-web/blob/master/requirements.txt
6869
pip --no-cache-dir install --upgrade \
6970
pip setuptools \
70-
pyopenssl babel \
71-
flask flask-babel flask-login flask-principal \
72-
iso-639 pypdf2 pytz requests \
73-
sqlalchemy tornado wand unidecode \
71+
pyopenssl Babel \
72+
Flask Flask-Babel Flask-Login Flask-Principal \
73+
iso-639 PyPDF2 pytz requests \
74+
SQLAlchemy tornado Wand unidecode \
7475
### OPTIONAL ###
76+
### https://github.com/janeczku/calibre-web/blob/master/optional-requirements.txt
7577
gevent google-api-python-client greenlet \
7678
httplib2 lxml oauth2client \
7779
pyasn1-modules pyasn1 pydrive pyyaml \
78-
rsa six uritemplate \
80+
rsa six uritemplate goodreads python-Levenshtein\
7981
&& \
8082

8183
# get actual ImageMagic 6 version info
@@ -126,11 +128,6 @@ RUN \
126128
# create Calibre Web folder structure
127129
mkdir -p $APP_HOME/app && \
128130

129-
# download and install kindlegen (Amazon Kindle Generator)
130-
mkdir -p $APP_HOME/kindlegen && \
131-
wget $AMAZON_KG_URL -P /tmp && \
132-
tar -xzf /tmp/$AMAZON_KG_TAR -C $APP_HOME/kindlegen && \
133-
134131
# cleanup temporary files
135132
rm -rf /tmp && \
136133
rm -rf /var/cache/apk/*
@@ -147,6 +144,9 @@ COPY calibre-init /init/calibre-init
147144

148145
# Set volumes for the Calibre Web folder structure
149146
VOLUME /books
147+
VOLUME $APP_HOME/app
148+
VOLUME $APP_HOME/config
149+
VOLUME $APP_HOME/kindlegen
150150

151151
# Expose ports
152152
EXPOSE 8083

README.md

+59-6
Original file line numberDiff line numberDiff line change
@@ -38,12 +38,32 @@ And if you are interested in the original __Calibre__ ebook management tool then
3838

3939
## Updates ##
4040

41-
**2017-11-04 - v1.1.10**
42-
43-
* added support for a configuration directory (as asked in ticket #13),
44-
where the configuration related files like `app.db` and `gdrive.db` will be stored;
45-
be aware that `metadata.db` will be still stored at the books directory which is required by the original Calibre application
46-
* new options `-v <your Calibre Web config folder>:/calibre-web/config` and `-e USE_CONFIG_DIR=true` to setup the configuration directory
41+
**2018-04-14 - v1.1.11**
42+
43+
* exposed additional directories (see ticket #24)
44+
`-v /calibre-web/app` - local path for Calibre Web application files
45+
`-v /calibre-web/kindlegen` - local path for Calibre Web kindlegen application
46+
* added support for setting the Calibre Web application folder (see ticket #27);
47+
map volume `-v /calibre-web/app` if you want to use Google Drive
48+
* updated python `requirements` and `optional requirements`at dockerfile according to
49+
- https://github.com/janeczku/calibre-web/blob/master/requirements.txt
50+
- https://github.com/janeczku/calibre-web/blob/master/optional-requirements.txt
51+
* added __Container Directory Structure__ information at README.md (see ticket #24)
52+
* kindlegen archive will be downloaded on container startup into `/calibre-web/kindlegen`
53+
and is not directly included in the image anymore
54+
* ownership of symlink of `app.db`, `gdrive.db` and `kindlegen` is changed from _root_ to the _calibre_ user & group
55+
56+
__Example:__
57+
```
58+
docker create --name=calibre-web --restart=always \
59+
-v /volume1/books/calibre:/books \
60+
-v /volume1/docker/apps/calibre-web/app:/calibre-web/app \
61+
-v /volume1/docker/apps/calibre-web/config:/calibre-web/config \
62+
-v /volume1/docker/apps/calibre-web/kindlegen:/calibre-web/kindlegen \
63+
-e PGID=65539 -e PUID=1029 \
64+
-p 8083:8083 \
65+
technosoft2000/calibre-web
66+
```
4767

4868
For previous changes see at [full changelog](CHANGELOG.md).
4969

@@ -84,6 +104,8 @@ __Create the container:__
84104
```
85105
docker create --name=calibre-web --restart=always \
86106
-v <your Calibre books folder>:/books \
107+
[-v <your Calibre Web application folder>:/calibre-web/app] \
108+
[-v <your Calibre Web kindlegen folder>:/calibre-web/kindlegen`]
87109
[-v <your Calibre Web config folder>:/calibre-web/config \]
88110
[-e USE_CONFIG_DIR=true \]
89111
[-e APP_REPO=https://github.com/janeczku/calibre-web.git \]
@@ -137,6 +159,8 @@ Accessing http://'host':8080 (e.g. http://192.168.0.10:8080) would then show you
137159
### Details ###
138160
* `-p 8083` - http port for the web user interface
139161
* `-v /books` - local path which contains the Calibre books and the necessary `metadata.db` which holds all collected meta-information of the books
162+
* `-v /calibre-web/app` - local path for Calibre Web application files; set this volume if you want to use Google Drive
163+
* `-v /calibre-web/kindlegen` - local path for Calibre Web kindlegen application
140164
* `-v /etc/localhost` - for timesync - __optional__
141165
* `-v /calibre-web/config` - local path for Calibre Web config files, like `app.db` and `gdrive.db`; **IMPORTANT**: the environment variable `USE_CONFIG_DIR` must be set to `true` - __optional__
142166
* `-e USE_CONFIG_DIR=true` - activate the usage of a dedicated configuration directory, otherwise the `books` directory will be used (default) - __optional__
@@ -177,6 +201,35 @@ In this instance PUID=1001 and PGID=1001. To find yours use id user as below:
177201
uid=1001(dockeruser) gid=1001(dockergroup) groups=1001(dockergroup)
178202
```
179203

204+
## Container Directory Structure ##
205+
```
206+
/
207+
|- books
208+
|- calibre-web
209+
|- app
210+
| |- "all Calibre Web Application files"
211+
| |- app.db -> /calibre-web/config/app.db
212+
| |- gdrive.db -> /calibre-web/config/gdrive.db
213+
| |- calibre-web.log
214+
| |- cps
215+
| | |- *.py
216+
| | |- *.pyc
217+
| |
218+
| |- vendor
219+
| |- kindlegen -> /calibre-web/kindlegen/kindlegen
220+
|
221+
|- config
222+
| |- app.db
223+
| |- gdrive.db
224+
|
225+
|- kindlegen
226+
|- EULA*.txt
227+
|- KindleGen Legal Notices*.txt
228+
|- docs
229+
|- kindlegen
230+
|- manual.html
231+
```
232+
180233
## Additional ##
181234
Shell access whilst the container is running: `docker exec -it calibre-web /bin/bash`
182235

get_or_update.sh

+28
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,8 @@ if [[ $ACCESS == "yes" ]]; then
9494
else
9595
echo "> create 'app.db' link $APPDB_LINK assigned to source $APPDB_SRC"
9696
ln -s $APPDB_SRC $APPDB_LINK
97+
echo "> change the ownership of $APPDB_LINK to $PUSER:$PGROUP"
98+
chown -h $PUSER:$PGROUP $APPDB_LINK
9799
fi
98100

99101
GDRIVEDB_SRC="$CONFIG_DIR/gdrive.db"
@@ -103,6 +105,8 @@ if [[ $ACCESS == "yes" ]]; then
103105
else
104106
echo "> create 'gdrive.db' link $GDRIVEDB_LINK assigned to source $GDRIVEDB_SRC"
105107
ln -s $GDRIVEDB_SRC $GDRIVEDB_LINK
108+
echo "> change the ownership of $GDRIVEDB_LINK to $PUSER:$PGROUP"
109+
chown -h $PUSER:$PGROUP $GDRIVEDB_LINK
106110
fi
107111

108112
else
@@ -184,6 +188,28 @@ else
184188
echo "> Please check and modify the permissions of the directory"
185189
fi
186190

191+
# create the kindlegen directory if it doesn't exist
192+
if [[ ! -d $APP_HOME/kindlegen ]]; then
193+
echo "[INFO] Creating the kindlegen directory: $APP_HOME/kindlegen"
194+
mkdir -p $APP_HOME/kindlegen
195+
echo "[INFO] Change the ownership of $APP_HOME/kindlegen (including subfolders) to $PUSER:$PGROUP"
196+
chown -R $PUSER:$PGROUP $APP_HOME/kindlegen
197+
else
198+
echo "[INFO] The kindlegen directory exist already and will be used: $APP_HOME/kindlegen"
199+
fi
200+
201+
# download and install kindlegen (Amazon Kindle Generator)
202+
if [[ ! -f $APP_HOME/kindlegen/kindlegen ]]; then
203+
echo "[INFO] Downloading kindlegen from $AMAZON_KG_URL into directory: $APP_HOME/kindlegen/$AMAZON_KG_TAR"
204+
wget $AMAZON_KG_URL -P $APP_HOME/kindlegen
205+
echo "[INFO] Extracting $AMAZON_KG_TAR into directory: $APP_HOME/kindlegen"
206+
tar -xzf $APP_HOME/kindlegen/$AMAZON_KG_TAR -C $APP_HOME/kindlegen
207+
echo "[INFO] Change the ownership of $APP_HOME/kindlegen (including subfolders) to $PUSER:$PGROUP"
208+
chown -R $PUSER:$PGROUP $APP_HOME/kindlegen
209+
else
210+
echo "[INFO] Kindlegen application exists already in directory: $APP_HOME/kindlegen"
211+
fi
212+
187213
# create symlink for kindlegen (Amazon Kindle Generator)
188214
KINDLEGEN_DIR="$APP_HOME/kindlegen"
189215
VENDOR_DIR="$APP_HOME/app/vendor"
@@ -202,6 +228,8 @@ else
202228
fi
203229
echo "> create kindlegen link $KINDLEGEN_LINK assigned to source $KINDLEGEN_SRC"
204230
ln -s $KINDLEGEN_SRC $KINDLEGEN_LINK
231+
echo "> change the ownership of $KINDLEGEN_LINK to $PUSER:$PGROUP"
232+
chown -h $PUSER:$PGROUP $KINDLEGEN_LINK
205233
fi
206234

207235
# check if a /tmp directory is available, if not create one

0 commit comments

Comments
 (0)