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