docker-flarum/startup

83 lines
2.1 KiB
Plaintext
Raw Normal View History

2016-07-17 05:35:13 -04:00
#!/bin/sh
2016-07-18 01:34:39 -04:00
# Env variables
export DB_HOST
export DB_USER
export DB_NAME
# Default values
DB_HOST=${DB_HOST:-mariadb}
DB_USER=${DB_USER:-flarum}
DB_NAME=${DB_NAME:-flarum}
# Required env variables
2016-07-17 05:35:13 -04:00
if [ -z "$DB_PASS" ]; then
echo "[ERROR] Mariadb database password must be set !"
exit 1
fi
if [ -z "$FORUM_URL" ]; then
echo "[ERROR] Forum url must be set !"
exit 1
fi
2016-07-17 10:57:27 -04:00
# if no installation was performed before
if [ ! -e '/flarum/www/app/config.php' ]; then
2016-07-17 05:35:13 -04:00
2016-07-17 09:55:22 -04:00
cd /flarum/app/
2016-07-17 10:57:27 -04:00
# Flarum settings
2016-07-17 09:55:22 -04:00
cat > config.yml <<EOF
2016-07-17 05:35:13 -04:00
databaseConfiguration:
driver: mysql
host: ${DB_HOST}
database: ${DB_NAME}
username: ${DB_USER}
password: ${DB_PASS}
baseUrl: ${FORUM_URL}
EOF
# Mail settings
sed -i -e "s|{{ MAIL_FROM }}|${MAIL_FROM}|g" \
-e "s|{{ MAIL_HOST }}|${MAIL_HOST}|g" \
-e "s|{{ MAIL_PORT }}|${MAIL_PORT}|g" \
-e "s|{{ MAIL_USER }}|${MAIL_USER}|g" \
-e "s|{{ MAIL_PASS }}|${MAIL_PASS}|g" \
2016-07-17 09:55:22 -04:00
-e "s|{{ MAIL_ENCR }}|${MAIL_ENCR}|g" config.sql
2016-07-17 05:35:13 -04:00
2016-07-17 10:57:27 -04:00
# Installer problem, wait fix in beta 6
2016-07-17 05:35:13 -04:00
# PHP Fatal error: Uncaught ReflectionException: Class flarum.config does not
# exist in /flarum/vendor/illuminate/container/Container.php
# https://github.com/flarum/core/commit/7192c4391bee006ccc2de3db6caa89803d72d130
sed -i -e 's|InfoCommand::class,||g' \
2016-07-17 09:55:22 -04:00
-e "s|\['config' => \$app->make('flarum.config')\]|['config' => \$app->isInstalled() ? \$app->make('flarum.config') : []]|g" vendor/flarum/core/src/Console/Server.php
2016-07-17 05:35:13 -04:00
2016-07-17 09:55:22 -04:00
# Set permissions
2016-07-17 10:57:27 -04:00
chown -R flarum:flarum /flarum/app
2016-07-17 05:35:13 -04:00
# Install flarum (migrate database + assets)
2016-07-17 09:55:22 -04:00
su-exec flarum:flarum php flarum install --file config.yml
2016-07-17 05:35:13 -04:00
# Define flarum settings in database
mysql -h"${DB_HOST}" -u"${DB_USER}" -p"${DB_PASS}" "${DB_NAME}" < config.sql
2016-07-17 10:57:27 -04:00
# Removing installation files
rm -f config.sql config.yml
# Moving sources to the final web directory
cd / && mv /flarum/app /flarum/www
2016-07-17 05:35:13 -04:00
else
echo "[INFO] Flarum already installed, launch app..."
2016-07-17 10:57:27 -04:00
# Removing the source directory
rm -rf /flarum/app
2016-07-17 05:35:13 -04:00
fi
2016-07-17 10:57:27 -04:00
# Set web directory permissions
chown -R flarum:flarum /flarum/www
2016-07-17 05:35:13 -04:00
# RUN !
2016-07-18 01:34:39 -04:00
exec supervisord -c /etc/supervisor/supervisord.conf