Skip to content
Snippets Groups Projects
Commit 08bf5961 authored by Mirco Nasuti's avatar Mirco Nasuti
Browse files

fix env variable name in run.sh

parent 67318721
No related branches found
No related tags found
No related merge requests found
#!/bin/sh
OPTS="-template /config/application.tmpl:/config/application.yml"
if [ ! -z "$DB_SERVER" ]; then
OPTS="$OPTS -wait tcp://$DB_SERVER -timeout 60s"
if [ ! -z "$PORTAL_DB_URL" ]; then
OPTS="$OPTS -wait tcp://$PORTAL_DB_URL -timeout 60s"
fi
if [ ! -z "$META_DB_SERVER" ]; then
OPTS="$OPTS -wait tcp://$META_DB_SERVER -timeout 60s"
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment