mirror of
https://github.com/frappe/frappe_docker.git
synced 2024-11-10 15:20:55 +00:00
25 lines
547 B
Bash
Executable File
25 lines
547 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
function checkConfigExists() {
|
|
COUNTER=0
|
|
while [[ ! -e /home/frappe/frappe-bench/sites/common_site_config.json && ${COUNTER} -le 30 ]]; do
|
|
sleep 1
|
|
((COUNTER = COUNTER + 1))
|
|
echo "config file not created, retry ${COUNTER}" >&2
|
|
done
|
|
|
|
if [[ ! -e /home/frappe/frappe-bench/sites/common_site_config.json ]]; then
|
|
echo "timeout: config file not created" >&2
|
|
exit 1
|
|
fi
|
|
}
|
|
|
|
if [[ "$1" == 'start' ]]; then
|
|
checkConfigExists
|
|
node /home/frappe/frappe-bench/apps/frappe/socketio.js
|
|
else
|
|
exec -c "$@"
|
|
fi
|