added docker restart command w/ burnettk

This commit is contained in:
jasquat 2022-06-10 17:00:00 -04:00
parent c94aebacb9
commit 8e5da896a2
1 changed files with 11 additions and 0 deletions

11
bin/docker_restart Executable file
View File

@ -0,0 +1,11 @@
#!/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
BPMN_SPEC_ABSOLUTE_DIR=..//sample-process-models docker compose stop
./bin/build_and_run_with_docker_compose