Files
appstore/apps/next-terminal/3.1.1/scripts/uninstall.sh
T
okxlin 2d21cee7b4 Fix Next Terminal 1Panel startup
Rework the app package to match the current upstream container deployment: generate config.yaml during install/upgrade, add bundled PostgreSQL, keep Guacd, and map the current SSH proxy port.

Disable cross-version upgrades because legacy SQLite/single-container installs cannot be migrated safely by this package. Verified latest and 3.1.1 with real 1Panel v2 smoke tests.
2026-06-27 02:38:48 +08:00

9 lines
162 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
else
docker compose down --volumes
fi