docker-flarum/rootfs/usr/local/bin/run.sh

135 lines
4.5 KiB
Bash
Raw Normal View History

2019-11-26 21:42:51 -05:00
#!/usr/bin/env sh
2016-07-17 05:35:13 -04:00
2016-07-18 01:34:39 -04:00
# Default values
2018-12-26 15:23:52 -05:00
DB_HOST="${DB_HOST:-mariadb}"
DB_USER="${DB_USER:-flarum}"
DB_NAME="${DB_NAME:-flarum}"
DB_PORT="${DB_PORT:-3306}"
FLARUM_TITLE="${FLARUM_TITLE:-Docker-Flarum}"
DEBUG="${DEBUG:-false}"
LOG_TO_STDOUT="${LOG_TO_STDOUT:-false}"
GITHUB_TOKEN_AUTH="${GITHUB_TOKEN_AUTH:-false}"
2016-07-18 01:34:39 -04:00
# Required env variables
2018-12-26 12:26:51 -05:00
if [ -z "${DB_PASS}" ]; then
2016-07-17 05:35:13 -04:00
echo "[ERROR] Mariadb database password must be set !"
exit 1
fi
2018-12-26 12:26:51 -05:00
if [ -z "${FORUM_URL}" ]; then
2016-07-17 05:35:13 -04:00
echo "[ERROR] Forum url must be set !"
exit 1
fi
2018-11-29 22:00:50 -05:00
# Set file config for nginx and php
2018-12-26 12:26:51 -05:00
sed -i "s/<UPLOAD_MAX_SIZE>/${UPLOAD_MAX_SIZE}/g" /etc/nginx/nginx.conf /etc/php7/php-fpm.conf
sed -i "s/<PHP_MEMORY_LIMIT>/${PHP_MEMORY_LIMIT}/g" /etc/php7/php-fpm.conf
sed -i "s/<OPCACHE_MEMORY_LIMIT>/${OPCACHE_MEMORY_LIMIT}/g" /etc/php7/conf.d/00_opcache.ini
2016-09-25 05:22:48 -04:00
# Set permissions
chown -R $UID:$GID /services /var/log /var/lib/nginx
2016-09-25 05:22:48 -04:00
2018-06-22 02:58:40 -04:00
# Set log output to STDOUT if wanted (LOG_TO_STDOUT=true)
2018-12-26 12:26:51 -05:00
if [ "${LOG_TO_STDOUT}" = true ]; then
2018-06-22 02:58:40 -04:00
echo "[INFO] Logging to stdout activated"
chmod o+w /dev/stdout
sed -i "s/.*error_log.*$/error_log \/dev\/stdout warn;/" /etc/nginx/nginx.conf
sed -i "s/.*error_log.*$/error_log = \/dev\/stdout/" /etc/php7/php-fpm.conf
fi
2018-11-29 23:24:19 -05:00
cd /flarum/app
# add github token authentication (eg. for privates extensions)
if [ "${GITHUB_TOKEN_AUTH}" != false ]; then
echo "[INFO] Adding github token authentication"
composer config github-oauth.github.com "${GITHUB_TOKEN_AUTH}"
2018-12-26 12:26:51 -05:00
fi
# Custom repositories (eg. for privates extensions)
2018-11-29 22:00:50 -05:00
if [ -f '/flarum/app/extensions/composer.repositories.txt' ]; then
while read line; do
repository=$(echo $line | cut -d '|' -f1)
json=$(echo $line | cut -d '|' -f2)
echo "[INFO] Adding ${repository} composer repository"
2018-12-26 15:23:52 -05:00
composer config repositories."${repository}" "${json}"
2018-11-29 22:47:57 -05:00
done < /flarum/app/extensions/composer.repositories.txt
fi
# Custom vhost flarum nginx
if [ ! -e '/etc/nginx/conf.d/custom-vhost-flarum.conf' ]; then
echo '# Example:
# fix for flagrow/sitemap (https://github.com/flagrow/sitemap)
# location = /sitemap.xml {
# try_files $uri $uri/ /index.php?$query_string;
# }' > /etc/nginx/conf.d/custom-vhost-flarum.conf
fi
2019-11-26 21:42:51 -05:00
# if installation was performed before
if [ -e '/flarum/app/public/assets/rev-manifest.json' ]; then
echo "[INFO] Flarum already installed, init app..."
2016-10-23 17:01:02 -04:00
sed -i -e "s|<DEBUG>|${DEBUG}|g" \
-e "s|<DB_HOST>|${DB_HOST}|g" \
-e "s|<DB_NAME>|${DB_NAME}|g" \
-e "s|<DB_USER>|${DB_USER}|g" \
-e "s|<DB_PASS>|${DB_PASS}|g" \
-e "s|<DB_PREF>|${DB_PREF}|g" \
2019-11-26 21:42:51 -05:00
-e "s|<FORUM_URL>|${FORUM_URL}|g" /flarum/app/config.php.sample
2016-10-23 17:01:02 -04:00
2019-11-26 21:42:51 -05:00
cp /flarum/app/config.php.sample /flarum/app/config.php
2018-11-29 22:00:50 -05:00
su-exec $UID:$GID php /flarum/app/flarum cache:clear
# Composer cache dir and packages list paths
2018-11-29 22:00:50 -05:00
CACHE_DIR=/flarum/app/extensions/.cache
LIST_FILE=/flarum/app/extensions/list
# Download extra extensions installed with composer wrapup script
2018-12-26 12:26:51 -05:00
if [ -s "${LIST_FILE}" ]; then
echo "[INFO] Install extra bundled extensions"
while read line; do
extension="${extension}${line} "
done < /flarum/app/extensions/list
cmd="composer require ${extension}"
COMPOSER_CACHE_DIR="${CACHE_DIR}" eval $cmd
echo "[INFO] Install extra bundled extensions: DONE."
2016-10-23 17:01:02 -04:00
else
echo "[INFO] No installed extensions"
fi
echo "[INFO] Init done, launch flarum..."
2016-10-23 17:01:02 -04:00
else
2019-11-26 21:42:51 -05:00
# if no installation was performed before
2018-11-29 22:00:50 -05:00
echo "[INFO] First launch, installation..."
2016-07-17 05:35:13 -04:00
2018-12-26 12:26:51 -05:00
if [ -z "${FLARUM_ADMIN_USER}" ] || [ -z "${FLARUM_ADMIN_PASS}" ] || [ -z "${FLARUM_ADMIN_MAIL}" ]; then
2018-11-29 22:00:50 -05:00
echo "[ERROR] User admin info of flarum must be set !"
exit 1
fi
sed -i -e "s|<DEBUG>|${DEBUG}|g" \
-e "s|<FORUM_URL>|${FORUM_URL}|g" \
-e "s|<DB_HOST>|${DB_HOST}|g" \
-e "s|<DB_NAME>|${DB_NAME}|g" \
-e "s|<DB_USER>|${DB_USER}|g" \
-e "s|<DB_PASS>|${DB_PASS}|g" \
-e "s|<DB_PREF>|${DB_PREF}|g" \
-e "s|<DB_PORT>|${DB_PORT}|g" \
-e "s|<FLARUM_ADMIN_USER>|${FLARUM_ADMIN_USER}|g" \
-e "s|<FLARUM_ADMIN_PASS>|${FLARUM_ADMIN_PASS}|g" \
-e "s|<FLARUM_ADMIN_MAIL>|${FLARUM_ADMIN_MAIL}|g" \
-e "s|<FLARUM_TITLE>|${FLARUM_TITLE}|g" /flarum/app/config.yml
2016-08-08 02:09:01 -04:00
# Install flarum
chown -R $UID:$GID /flarum
2018-12-26 12:26:51 -05:00
su-exec $UID:$GID php /flarum/app/flarum install --file=/flarum/app/config.yml
2018-11-29 22:00:50 -05:00
echo "[INFO] End of flarum installation"
2016-10-23 17:01:02 -04:00
fi
2016-07-17 05:35:13 -04:00
2018-11-29 22:00:50 -05:00
# Set permissions for /flarum folder
find /flarum ! -user $UID -print0 | xargs -0 -r chown $UID:$GID
find /flarum ! -group $GID -print0 | xargs -0 -r chown $UID:$GID
2016-07-17 05:35:13 -04:00
# RUN !
exec su-exec $UID:$GID /bin/s6-svscan /services