mirror of
https://github.com/sartography/cr-connect-workflow.git
synced 2025-02-23 05:08:32 +00:00
20 lines
595 B
Bash
Executable File
20 lines
595 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
function error_handler() {
|
|
>&2 echo "Exited with BAD EXIT CODE '${2}' in ${0} script at line: ${1}."
|
|
exit "$2"
|
|
}
|
|
trap 'error_handler ${LINENO} $?' ERR
|
|
set -o errtrace -o errexit -o nounset -o pipefail
|
|
|
|
docker stop postgres_db_1 || echo ''
|
|
mkdir -p "${HOME}/docker/volumes/postgres"
|
|
|
|
if command -v docker-compose >/dev/null ; then
|
|
docker-compose -f postgres/docker-compose.yml up --no-start
|
|
docker-compose -f postgres/docker-compose.yml start
|
|
else
|
|
docker compose -f postgres/docker-compose.yml up --no-start
|
|
docker compose -f postgres/docker-compose.yml start
|
|
fi
|