blob: 3a132a3b409bcabc13753d96df7aeedf9ae6ead6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#! /bin/bash
set -e
export PYTHONPATH=/biomedisa:${PYTHONPATH}
export DJANGO_SETTINGS_MODULE=biomedisa.settings
if ! whoami &> /dev/null; then
if [ -w /etc/passwd ]; then
echo "${USER_NAME:-default}:x:$(id -u):0:${USER_NAME:-default} user:${HOME}:/sbin/nologin" >> /etc/passwd
fi
fi
until nc -z -v -w30 $MYSQL_HOST 3306; do
echo "Waiting for database connection..."
sleep 1
done
cd /biomedisa
echo "Running: $@"
exec "$@"
|