aff1720972
refs #37 (cherry picked from commit 4469010a74ffefe2d92ffa335d7d1225d12fdece)
18 lines
255 B
Bash
Executable File
18 lines
255 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# script/update:
|
|
|
|
set -e
|
|
|
|
cd "$(dirname "$0")/.."
|
|
|
|
echo "==> Stopping and removing pod kontor"
|
|
if podman pod exists kontor; then
|
|
podman pod stop kontor
|
|
podman pod rm kontor
|
|
podman rm postgres
|
|
podman rm adminer
|
|
fi
|
|
|
|
script/setup
|