2
0
mirror of https://github.com/frappe/frappe_docker.git synced 2024-09-21 11:39:01 +00:00
frappe_docker/build/common/worker/docker-entrypoint.sh

188 lines
4.5 KiB
Bash
Raw Normal View History

2020-02-10 08:00:54 +00:00
#!/bin/bash
function configureEnv() {
if [ ! -f /home/frappe/frappe-bench/sites/common_site_config.json ]; then
if [[ -z "$MARIADB_HOST" ]]; then
if [[ -z "$POSTGRES_HOST" ]]; then
echo "MARIADB_HOST or POSTGRES_HOST is not set"
exit 1
fi
2020-02-10 08:00:54 +00:00
fi
if [[ -z "$REDIS_CACHE" ]]; then
echo "REDIS_CACHE is not set"
exit 1
fi
if [[ -z "$REDIS_QUEUE" ]]; then
echo "REDIS_QUEUE is not set"
exit 1
fi
if [[ -z "$REDIS_SOCKETIO" ]]; then
echo "REDIS_SOCKETIO is not set"
exit 1
fi
if [[ -z "$SOCKETIO_PORT" ]]; then
echo "SOCKETIO_PORT is not set"
exit 1
fi
if [[ -z "$DB_PORT" ]]; then
export DB_PORT=3306
fi
export DB_HOST="${MARIADB_HOST:-$POSTGRES_HOST}"
envsubst '${DB_HOST}
${DB_PORT}
2020-02-10 08:00:54 +00:00
${REDIS_CACHE}
${REDIS_QUEUE}
${REDIS_SOCKETIO}
${SOCKETIO_PORT}' < /opt/frappe/common_site_config.json.template > /home/frappe/frappe-bench/sites/common_site_config.json
2020-02-10 08:00:54 +00:00
fi
}
function checkConnection() {
2021-02-20 10:54:01 +00:00
. /home/frappe/frappe-bench/env/bin/activate \
&& python /home/frappe/frappe-bench/commands/check_connection.py
2020-02-10 08:00:54 +00:00
}
function checkConfigExists() {
COUNTER=0
while [[ ! -e /home/frappe/frappe-bench/sites/common_site_config.json ]] && [[ $COUNTER -le 30 ]] ; do
sleep 1
(( COUNTER=COUNTER+1 ))
2020-02-10 08:00:54 +00:00
echo "config file not created, retry $COUNTER"
done
if [[ ! -e /home/frappe/frappe-bench/sites/common_site_config.json ]]; then
echo "timeout: config file not created"
exit 1
fi
}
if [[ ! -e /home/frappe/frappe-bench/sites/apps.txt ]]; then
find /home/frappe/frappe-bench/apps -mindepth 1 -maxdepth 1 -type d -printf '%f\n' | sort -r > /home/frappe/frappe-bench/sites/apps.txt
2020-02-10 08:00:54 +00:00
fi
2020-08-05 16:10:37 +00:00
# symlink node_modules
2020-08-06 09:48:32 +00:00
ln -sfn /home/frappe/frappe-bench/sites/assets/frappe/node_modules \
2020-08-05 16:10:37 +00:00
/home/frappe/frappe-bench/apps/frappe/node_modules
2020-02-10 08:00:54 +00:00
if [ "$1" = 'start' ]; then
configureEnv
checkConnection
if [[ -z "$WORKERS" ]]; then
export WORKERS=2
fi
if [[ -z "$FRAPPE_PORT" ]]; then
export FRAPPE_PORT=8000
fi
if [[ -z "$WORKER_CLASS" ]]; then
export WORKER_CLASS=gthread
fi
export LOAD_CONFIG_FILE=""
if [ "$WORKER_CLASS" = "gevent" ]; then
export LOAD_CONFIG_FILE="-c /home/frappe/frappe-bench/commands/gevent_patch.py"
fi
if [[ ! -z "$AUTO_MIGRATE" ]]; then
2021-02-20 10:54:01 +00:00
. /home/frappe/frappe-bench/env/bin/activate \
&& python /home/frappe/frappe-bench/commands/auto_migrate.py
fi
2020-02-10 08:00:54 +00:00
2021-02-20 10:54:01 +00:00
. /home/frappe/frappe-bench/env/bin/activate
gunicorn $LOAD_CONFIG_FILE -b 0.0.0.0:$FRAPPE_PORT \
2021-02-20 10:54:01 +00:00
--worker-tmp-dir /dev/shm \
--threads=4 \
--workers $WORKERS \
--worker-class=$WORKER_CLASS \
2021-02-20 10:54:01 +00:00
--log-file=- \
-t 120 frappe.app:application --preload
2020-02-10 08:00:54 +00:00
elif [ "$1" = 'worker' ]; then
checkConfigExists
checkConnection
# default WORKER_TYPE=default
2021-02-20 10:54:01 +00:00
. /home/frappe/frappe-bench/env/bin/activate
python /home/frappe/frappe-bench/commands/worker.py
2020-02-10 08:00:54 +00:00
elif [ "$1" = 'schedule' ]; then
checkConfigExists
checkConnection
2021-02-20 10:54:01 +00:00
. /home/frappe/frappe-bench/env/bin/activate
python /home/frappe/frappe-bench/commands/background.py
2020-02-10 08:00:54 +00:00
elif [ "$1" = 'new' ]; then
checkConfigExists
checkConnection
2021-02-20 10:54:01 +00:00
. /home/frappe/frappe-bench/env/bin/activate
python /home/frappe/frappe-bench/commands/new.py
exit
2020-02-10 08:00:54 +00:00
2020-10-01 08:42:55 +00:00
elif [ "$1" = 'drop' ]; then
checkConfigExists
checkConnection
2021-02-20 10:54:01 +00:00
. /home/frappe/frappe-bench/env/bin/activate
python /home/frappe/frappe-bench/commands/drop.py
exit
2020-10-01 08:42:55 +00:00
2020-02-10 08:00:54 +00:00
elif [ "$1" = 'migrate' ]; then
2021-02-20 10:54:01 +00:00
. /home/frappe/frappe-bench/env/bin/activate \
&& python /home/frappe/frappe-bench/commands/migrate.py
2020-02-10 08:00:54 +00:00
exit
elif [ "$1" = 'doctor' ]; then
2021-02-20 10:54:01 +00:00
. /home/frappe/frappe-bench/env/bin/activate \
&& python /home/frappe/frappe-bench/commands/doctor.py ${@:2}
2020-02-10 08:00:54 +00:00
exit
elif [ "$1" = 'backup' ]; then
2021-02-20 10:54:01 +00:00
. /home/frappe/frappe-bench/env/bin/activate
python /home/frappe/frappe-bench/commands/backup.py
exit
2020-02-10 08:00:54 +00:00
elif [ "$1" = 'console' ]; then
if [[ -z "$2" ]]; then
echo "Need to specify a sitename with the command:"
echo "console <sitename>"
exit 1
fi
2021-02-20 10:54:01 +00:00
. /home/frappe/frappe-bench/env/bin/activate
python /home/frappe/frappe-bench/commands/console.py "$2"
exit
elif [ "$1" = 'push-backup' ]; then
2021-02-20 10:54:01 +00:00
. /home/frappe/frappe-bench/env/bin/activate \
&& python /home/frappe/frappe-bench/commands/push_backup.py
exit
elif [ "$1" = 'restore-backup' ]; then
2021-02-20 10:54:01 +00:00
. /home/frappe/frappe-bench/env/bin/activate \
&& python /home/frappe/frappe-bench/commands/restore_backup.py
exit
2020-02-10 08:00:54 +00:00
else
2020-08-29 18:36:56 +00:00
exec $@
2020-02-10 08:00:54 +00:00
fi