genofire/hs_monolith
genofire
/
hs_monolith
Archived
1
0
Fork 0
This repository has been archived on 2020-09-27. You can view files and clone it, but cannot push or open issues or pull requests.
hs_monolith/monolith/start-db.sh

31 lines
711 B
Bash
Raw Normal View History

2017-06-16 11:46:18 +02:00
#!/bin/bash
[[ -n "$DOCKER_HOST" ]] && echo "DOCKER_HOST: $DOCKER_HOST"
if [[ ! -n "$LAB_MONOLITH_DB_HOST" ]]; then
echo 'ERROR: LAB_MONOLITH_DB_HOST is not set.'
exit 1
else
echo "LAB_MONOLITH_DB_HOST: $LAB_MONOLITH_DB_HOST"
fi
if [[ ! -n "$LAB_MONOLITH_DB_PORT" ]]; then
echo 'ERROR: LAB_MONOLITH_DB_PORT is not set.'
exit 1
else
echo "LAB_MONOLITH_DB_PORT: $LAB_MONOLITH_DB_PORT"
fi
if [[ ! -n "$LAB_MONOLITH_DB_PASSWORD" ]]; then
echo 'ERROR: LAB_MONOLITH_DB_PASSWORD is not set.'
exit 1
fi
echo 'Starting database...'
docker run --rm --name monolith-postgres\
-p $LAB_MONOLITH_DB_PORT:5432\
-e POSTGRES_USER=monolith\
-e POSTGRES_PASSWORD=$LAB_MONOLITH_DB_PASSWORD\
-d postgres:9