Spotter-VM/motech.sh

45 lines
2.4 KiB
Bash
Raw Normal View History

2018-01-23 18:18:46 +01:00
#!/bin/sh
SOURCE_DIR=$(realpath $(dirname "${0}"))/motech
# Check prerequisites
2018-01-26 21:58:29 +01:00
docker image ls | grep -q activemq || $(realpath $(dirname "${0}"))/activemq.sh
2018-02-03 13:19:24 +01:00
docker image ls | grep -q postfix || $(realpath $(dirname "${0}"))/postfix.sh
2018-01-26 21:58:29 +01:00
docker image ls | grep -q postgres || $(realpath $(dirname "${0}"))/postgres.sh
docker image ls | grep -q tomcat || $(realpath $(dirname "${0}"))/tomcat.sh
2018-01-23 18:18:46 +01:00
# Build Docker container
docker build -t motech ${SOURCE_DIR}
# Create database
export MOTECH_PWD=$(head -c 18 /dev/urandom | base64)
2018-01-23 18:18:46 +01:00
envsubst <${SOURCE_DIR}/createdb.sql | docker exec -i postgres psql
# Configure Motech
mkdir -p /srv/motech/conf/config/org.motechproject.motech-platform-email
envsubst <${SOURCE_DIR}/srv/motech/conf/config/bootstrap.properties >/srv/motech/conf/config/bootstrap.properties
cp ${SOURCE_DIR}/srv/motech/conf/config-locations.properties /srv/motech/conf/config-locations.properties
cp ${SOURCE_DIR}/srv/motech/conf/config/motech-settings.properties /srv/motech/conf/config/motech-settings.properties
cp ${SOURCE_DIR}/srv/motech/conf/config/org.motechproject.motech-platform-email/motech-email.properties /srv/motech/conf/config/org.motechproject.motech-platform-email/motech-email.properties
chown -R 8013:8013 /srv/motech/conf
cp ${SOURCE_DIR}/srv/motech/update-url.sh /srv/motech/update-url.sh
2018-01-23 18:18:46 +01:00
# Create Motech service
cp ${SOURCE_DIR}/etc/init.d/motech /etc/init.d/motech
rc-update add motech
2018-01-23 18:18:46 +01:00
service motech start
# Configure Motech admin
2018-01-23 18:18:46 +01:00
echo `date` '- Waiting for database to be populated. This should take about a minute.'
MOTECH_IP=$(docker inspect -f '{{range .NetworkSettings.Networks}}{{.IPAddress}}{{end}}' motech)
until curl -s "http://${MOTECH_IP}:8080/motech/module/server/startup/" | grep -q adminLogin; do
2018-01-23 18:18:46 +01:00
sleep 1
done
export MOTECH_ADMIN_USER="admin"
export MOTECH_ADMIN_EMAIL="admin@example.com"
export MOTECH_ADMIN_PWD=$(head -c 12 /dev/urandom | base64)
curl -H "Content-Type: application/json" -X POST -d "{\"adminLogin\":\"${MOTECH_ADMIN_USER}\",\"adminEmail\":\"${MOTECH_ADMIN_EMAIL}\",\"adminPassword\":\"${MOTECH_ADMIN_PWD}\",\"adminConfirmPassword\":\"${MOTECH_ADMIN_PWD}\",\"language\":\"cs\",\"providerName\":\"\",\"providerUrl\":\"\",\"schedulerUrl\":\"\"}" http://${MOTECH_IP}:8080/motech/module/server/startup/
# Add application definition
spotter-appmgr add-app motech "https://motech.{host}/motech/" "${MOTECH_ADMIN_USER}" "${MOTECH_ADMIN_PWD}"