mirror of
https://github.com/fnproject/fn.git
synced 2022-10-28 21:29:17 +03:00
Add : as it removes need for if. : makes it use if var is empty or unset not just unset
This commit is contained in:
12
test.sh
12
test.sh
@@ -9,7 +9,7 @@ docker run --name func-mysql-test -p 3307:3306 -e MYSQL_DATABASE=funcs -e MYSQL_
|
|||||||
docker rm -fv func-redis-test|| echo No prev redis test db container
|
docker rm -fv func-redis-test|| echo No prev redis test db container
|
||||||
docker run --name func-redis-test -p 6301:6379 -d redis
|
docker run --name func-redis-test -p 6301:6379 -d redis
|
||||||
sleep 5
|
sleep 5
|
||||||
case ${DOCKER_LOCATION-localhost} in
|
case ${DOCKER_LOCATION:-localhost} in
|
||||||
localhost)
|
localhost)
|
||||||
export POSTGRES_HOST=localhost
|
export POSTGRES_HOST=localhost
|
||||||
export POSTGRES_PORT=15432
|
export POSTGRES_PORT=15432
|
||||||
@@ -24,18 +24,14 @@ docker_ip)
|
|||||||
if [[ ! -z ${DOCKER_HOST} ]]
|
if [[ ! -z ${DOCKER_HOST} ]]
|
||||||
then
|
then
|
||||||
DOCKER_IP=`echo ${DOCKER_HOST} | awk -F/ '{print $3}'`
|
DOCKER_IP=`echo ${DOCKER_HOST} | awk -F/ '{print $3}'`
|
||||||
if [[ -z ${DOCKER_IP} ]]
|
|
||||||
then
|
|
||||||
DOCKER_IP=localhost
|
|
||||||
fi
|
|
||||||
fi
|
fi
|
||||||
export POSTGRES_HOST=${DOCKER_IP-localhost}
|
export POSTGRES_HOST=${DOCKER_IP:-localhost}
|
||||||
export POSTGRES_PORT=15432
|
export POSTGRES_PORT=15432
|
||||||
|
|
||||||
export MYSQL_HOST=${DOCKER_IP-localhost}
|
export MYSQL_HOST=${DOCKER_IP:-localhost}
|
||||||
export MYSQL_PORT=3307
|
export MYSQL_PORT=3307
|
||||||
|
|
||||||
export REDIS_HOST=${DOCKER_IP-localhost}
|
export REDIS_HOST=${DOCKER_IP:-localhost}
|
||||||
export REDIS_PORT=6301
|
export REDIS_PORT=6301
|
||||||
;;
|
;;
|
||||||
container_ip)
|
container_ip)
|
||||||
|
|||||||
Reference in New Issue
Block a user