Files
appstore/apps/memgraph/latest/scripts/uninstall.sh
T
okxlin bc2e825a12 Add memgraph app
Maintainer-workflow: appstore-pr-maintainer
2026-07-15 10:01:16 +08:00

9 lines
196 B
Bash
Executable File

#!/usr/bin/env bash
set -euo pipefail
if command -v docker-compose >/dev/null 2>&1; then
docker-compose down --volumes --remove-orphans
else
docker compose down --volumes --remove-orphans
fi