LXCize Ushahidi setup
This commit is contained in:
parent
f74586c94c
commit
cbaf4d6941
@ -1,21 +1,14 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
SOURCE_DIR=$(realpath $(dirname "${0}"))/ushahidi
|
SOURCE_DIR=$(realpath $(dirname "${0}"))/setup
|
||||||
|
|
||||||
# Check prerequisites
|
# Check prerequisites
|
||||||
lxc-ls | grep -q mariadb || $(realpath $(dirname "${0}"))/mariadb.sh
|
[ ! -e /run/openrc/started/mariadb ] && service mariadb start && STOP_MARIADB=1
|
||||||
lxc-ls | grep -q postfix || $(realpath $(dirname "${0}"))/postfix.sh
|
|
||||||
service mariadb start
|
|
||||||
|
|
||||||
# Build Docker container
|
|
||||||
docker build -t ushahidi ${SOURCE_DIR}
|
|
||||||
cp ${SOURCE_DIR}/etc/init.d/ushahidi /etc/init.d/ushahidi
|
|
||||||
rc-update -u
|
|
||||||
|
|
||||||
# Create database
|
# Create database
|
||||||
export USHAHIDI_PWD=$(head -c 18 /dev/urandom | base64)
|
export USHAHIDI_PWD=$(head -c 18 /dev/urandom | base64)
|
||||||
envsubst <${SOURCE_DIR}/createdb.sql | docker exec -i mariadb mysql
|
envsubst <${SOURCE_DIR}/createdb.sql | lxc-attach mariadb -- mysql
|
||||||
|
|
||||||
# Configure Ushahidi
|
# Configure Ushahidi
|
||||||
mkdir -p /srv/ushahidi/conf /srv/ushahidi/data
|
mkdir -p /srv/ushahidi/conf /srv/ushahidi/data
|
||||||
@ -24,17 +17,22 @@ envsubst <${SOURCE_DIR}/srv/ushahidi/conf/env >/srv/ushahidi/conf/env
|
|||||||
cp ${SOURCE_DIR}/srv/ushahidi/conf/config.json /srv/ushahidi/conf/config.json
|
cp ${SOURCE_DIR}/srv/ushahidi/conf/config.json /srv/ushahidi/conf/config.json
|
||||||
|
|
||||||
# Populate database
|
# Populate database
|
||||||
docker run --rm -h ushahidi --link mariadb -v /srv/ushahidi/conf/env:/srv/ushahidi/platform/.env ushahidi /srv/ushahidi/platform/bin/phinx migrate -c /srv/ushahidi/platform/application/phinx.php
|
lxc-execute ushahidi -- /srv/ushahidi/platform/bin/phinx migrate -c /srv/ushahidi/platform/application/phinx.php
|
||||||
|
|
||||||
# Create admin account
|
# Create admin account
|
||||||
export USHAHIDI_ADMIN_USER=admin@example.com
|
export USHAHIDI_ADMIN_USER=admin@example.com
|
||||||
export USHAHIDI_ADMIN_PWD=$(head -c 12 /dev/urandom | base64)
|
export USHAHIDI_ADMIN_PWD=$(head -c 12 /dev/urandom | base64)
|
||||||
export USHAHIDI_ADMIN_HASH=$(docker run --rm ushahidi php -r "echo password_hash('${USHAHIDI_ADMIN_PWD}', PASSWORD_BCRYPT);")
|
#TODO: python-bcrypt
|
||||||
envsubst <${SOURCE_DIR}/adminpwd.sql | docker exec -i mariadb mysql ushahidi
|
export USHAHIDI_ADMIN_HASH=$(lxc-execute ushahidi -- php -r "echo password_hash('${USHAHIDI_ADMIN_PWD}', PASSWORD_BCRYPT);")
|
||||||
|
envsubst <${SOURCE_DIR}/adminpwd.sql | lxc-attach mariadb -- mysql ushahidi
|
||||||
vmmgr update-login ushahidi "${USHAHIDI_ADMIN_USER}" "${USHAHIDI_ADMIN_PWD}"
|
vmmgr update-login ushahidi "${USHAHIDI_ADMIN_USER}" "${USHAHIDI_ADMIN_PWD}"
|
||||||
|
|
||||||
|
# Install service
|
||||||
|
cp ${SOURCE_DIR}/etc/init.d/ushahidi /etc/init.d/ushahidi
|
||||||
|
rc-update -u
|
||||||
|
|
||||||
# Install cron job
|
# Install cron job
|
||||||
cp ${SOURCE_DIR}/etc/periodic/15min/ushahidi /etc/periodic/15min/ushahidi
|
cp ${SOURCE_DIR}/etc/periodic/15min/ushahidi /etc/periodic/15min/ushahidi
|
||||||
|
|
||||||
# Stop services required for build
|
# Stop services required for build
|
||||||
service mariadb stop
|
[ ! -z ${STOP_MARIADB} ] && service mariadb stop
|
||||||
|
@ -1,21 +1,13 @@
|
|||||||
#!/sbin/openrc-run
|
#!/sbin/openrc-run
|
||||||
|
|
||||||
description="Ushahidi docker container"
|
description="Ushahidi container"
|
||||||
|
|
||||||
depend() {
|
depend() {
|
||||||
need docker mariadb postfix
|
need cgroups mariadb
|
||||||
}
|
}
|
||||||
|
|
||||||
start() {
|
start() {
|
||||||
/usr/bin/docker run -d --rm \
|
lxc-start ushahidi
|
||||||
--name ushahidi \
|
|
||||||
-h ushahidi \
|
|
||||||
--link mariadb \
|
|
||||||
--link postfix \
|
|
||||||
-v /srv/ushahidi/conf/env:/srv/ushahidi/platform/.env \
|
|
||||||
-v /srv/ushahidi/conf/config.json:/srv/ushahidi/config.json \
|
|
||||||
-v /srv/ushahidi/data:/srv/ushahidi/platform/application/media/uploads \
|
|
||||||
ushahidi
|
|
||||||
}
|
}
|
||||||
|
|
||||||
start_post() {
|
start_post() {
|
||||||
@ -27,5 +19,5 @@ stop_pre() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
stop() {
|
stop() {
|
||||||
/usr/bin/docker stop ushahidi
|
lxc-stop ushahidi
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user