Files
open-webui/docker-cleanup.sh
T

17 lines
588 B
Bash
Raw Normal View History

2026-05-12 03:23:50 +09:00
#!/usr/bin/env bash
set -euo pipefail
# ---------------------------------------------------------------------------
# Tear down the compose project and remove all volumes (including data).
# ---------------------------------------------------------------------------
echo "WARNING: This will stop all containers and delete all volumes (including persistent data)."
read -rp "Are you sure you want to continue? [y/N]: " answer
if [[ "${answer,,}" =~ ^y(es)?$ ]]; then
docker compose down -v
echo "All containers and volumes have been removed."
else
echo "Operation cancelled."
fi