Change docker layout and setup install for CKAN 2.6.2 with password protect option

This commit is contained in:
Marko Bocevski 2017-04-06 11:25:21 +02:00
parent 0ebeaad076
commit db0b33437d
3 changed files with 76 additions and 22 deletions

View File

@ -4,21 +4,25 @@ MAINTAINER Keitaro Inc <info@keitaro.info>
ENV APP_DIR=/srv/app
ENV SRC_DIR=/srv/app/src
ENV PIP_SRC=${SRC_DIR}
ENV GIT_URL=https://github.com/ckan/ckan.git
ENV GIT_BRANCH=ckan-2.6.0
ENV GIT_BRANCH=ckan-2.6.2
ENV CKAN_SITE_URL=http://localhost:5000
ENV CKAN__PLUGINS image_view text_view recline_view datastore datapusher envvars
WORKDIR ${APP_DIR}
#########################
### Base docker layer ###
#########################
# Install necessary packages to run CKAN
RUN apk add --no-cache git \
gettext \
postgresql-client \
python \
py-pip \
py-gunicorn && \
# Temporary packages to build CKAN requirements
nginx \
apache2-utils && \
# Packages to build CKAN requirements and plugins
apk add --no-cache --virtual .build-deps \
postgresql-dev \
gcc \
@ -29,30 +33,38 @@ RUN apk add --no-cache git \
libtool \
musl-dev \
python-dev && \
# Build and install libgeos to support geospatial
git clone -b 3.6.0 --depth=1 --single-branch https://git.osgeo.org/gogs/geos/geos.git ${SRC_DIR}/geos && \
# Create SRC_DIR
mkdir -p ${SRC_DIR} && \
# Create nginx run dir
mkdir -p /run/nginx && \
# Install pip and gunicorn
curl -o ${SRC_DIR}/get-pip.py https://bootstrap.pypa.io/get-pip.py && \
python ${SRC_DIR}/get-pip.py && \
pip install gunicorn gevent && \
rm -rf ${SRC_DIR}/get-pip.py
############################
### libgeos docker layer ###
############################
# Build and install libgeos to support geospatial
RUN git clone -b 3.6.0 --depth=1 --single-branch https://git.osgeo.org/gogs/geos/geos.git ${SRC_DIR}/geos && \
cd ${SRC_DIR}/geos && \
./autogen.sh && \
./configure --prefix /usr && \
make -j2 && \
make install && \
# Fetch CKAN and install
git clone -b ${GIT_BRANCH} --depth=1 --single-branch ${GIT_URL} ${SRC_DIR}/ckan && \
rm -rf ${SRC_DIR}/geos
#########################
### CKAN docker layer ###
#########################
# Install CKAN
RUN pip install -e git+${GIT_URL}@${GIT_BRANCH}#egg=ckan && \
cd ${SRC_DIR}/ckan && \
cp who.ini ${APP_DIR} && \
python setup.py install && \
pip install --no-cache-dir testrepository && \
pip install --no-cache-dir --upgrade -r requirements.txt && \
pip install --no-cache-dir gevent && \
# Remove temporary packages and files
apk del .build-deps && \
rm -rf ${SRC_DIR}
# CKAN plugins to enable
ENV CKAN__PLUGINS image_view text_view recline_view datastore datapusher envvars
# Default Extensions
RUN pip install --no-cache-dir git+https://github.com/okfn/ckanext-envvars.git#egg=ckanext-envvars && \
pip install -r requirements.txt && \
# Install CKAN envvars to support loading config from environment variables
pip install -e git+https://github.com/okfn/ckanext-envvars.git#egg=ckanext-envvars && \
# Create and update CKAN config
paster --plugin=ckan make-config ckan ${APP_DIR}/production.ini && \
paster --plugin=ckan config-tool ${APP_DIR}/production.ini "ckan.plugins = ${CKAN__PLUGINS}"

28
rootfs/setup/nginx.conf Normal file
View File

@ -0,0 +1,28 @@
worker_processes 4;
events {
worker_connections 1024;
}
http {
include mime.types;
default_type application/octet-stream;
sendfile on;
client_max_body_size 100m;
keepalive_timeout 65;
server {
listen 5000;
server_name localhost;
auth_basic "Restricted";
auth_basic_user_file /srv/app/.htpasswd;
location / {
auth_basic "Restricted";
auth_basic_user_file /srv/app/.htpasswd;
proxy_pass http://127.0.0.1:4000;
}
}
}

View File

@ -2,7 +2,21 @@
python prerun.py
if [ $? -eq 0 ]
then
gunicorn --log-file=- -k gevent -w 4 --paste production.ini
if [ "$PASSWORD_PROTECT" = true ]
then
if [ "$HTPASSWD_USER" ] || [ "$HTPASSWD_PASSWORD" ]
then
cp -a /srv/app/nginx.conf /etc/nginx/nginx.conf
htpasswd -b -c /srv/app/.htpasswd $HTPASSWD_USER $HTPASSWD_PASSWORD
nginx
gunicorn --log-file=- -k gevent -w 4 -b 127.0.0.1:4000 --paste production.ini
else
echo "Missing HTPASSWD_USER or HTPASSWD_PASSWORD environment variables. Exiting..."
exit 1
fi
else
gunicorn --log-file=- -k gevent -w 4 -b 0.0.0.0:5000 --paste production.ini
fi
else
echo "[prerun] failed...not starting CKAN."
fi