8 lines
202 B
Bash
Executable File
8 lines
202 B
Bash
Executable File
#!/usr/bin/env sh
|
|
set -eu
|
|
cd "$(dirname "$0")"
|
|
printf 'ACHTUNG: Alle SIEM-Daten und Docker-Volumes löschen. Tippe DELETE: '
|
|
read x
|
|
[ "$x" = "DELETE" ] || exit 1
|
|
docker compose down -v --remove-orphans
|