Загрузить файлы в «/»

This commit is contained in:
2026-04-23 06:40:34 +00:00
parent 9caa996d31
commit 1a5c27dbe9
5 changed files with 383 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
#!/usr/bin/env bash
set -euo pipefail
echo "== RemnaWave Panel: uninstall/stop =="
docker compose down --remove-orphans
read -r -p "Remove built Docker images too? (y/N): " remove_images
if [[ "${remove_images:-N}" =~ ^[Yy]$ ]]; then
docker compose down --rmi local --remove-orphans
fi
echo "Panel removed."