10 lines
221 B
Bash
Executable file
10 lines
221 B
Bash
Executable file
#!/bin/sh
|
|
|
|
BASE_DIR="$(dirname -- "`readlink -f -- "$0"`")"
|
|
cd -- "$BASE_DIR"
|
|
|
|
. ./util.sh
|
|
|
|
$DOCKERCOMPOSE -f $DOCKERCOMPOSEFILE down -v
|
|
$DOCKERCOMPOSE -f $DOCKERCOMPOSEFILE rm -fv
|
|
$DOCKERCOMPOSE -f $DOCKERCOMPOSEFILE up
|