You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
388 B
19 lines
388 B
7 months ago
|
#!/bin/sh
|
||
|
|
||
|
if [ "${DEV}" = "false" ]; then
|
||
|
echo "Starting test mode"
|
||
|
exec /run.sh
|
||
|
fi
|
||
|
|
||
|
echo "Starting development mode"
|
||
|
|
||
|
if grep -i -q alpine /etc/issue; then
|
||
|
exec /usr/bin/supervisord -c /etc/supervisord.conf
|
||
|
elif grep -i -q ubuntu /etc/issue; then
|
||
|
exec /usr/bin/supervisord -c /etc/supervisor/supervisord.conf
|
||
|
else
|
||
|
echo 'ERROR: Unsupported base image'
|
||
|
exit 1
|
||
|
fi
|
||
|
|