20 lines
322 B
Bash
Executable File
20 lines
322 B
Bash
Executable File
#!/bin/bash
|
|
#-------------------------------------------------------------------------------
|
|
|
|
set -o errexit
|
|
|
|
APPL_HOME_DIR="$(dirname "$(dirname "$0")")"
|
|
|
|
|
|
|
|
#-------------------------------------------------------------------------------
|
|
|
|
cd ${APPL_HOME_DIR}
|
|
|
|
|
|
sbin/docker_stop
|
|
|
|
sbin/docker_build_push
|
|
|
|
sbin/docker_start
|