mirror of
https://github.com/okxlin/appstore.git
synced 2026-09-26 16:01:04 +00:00
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.
9 lines
162 B
Bash
Executable File
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
|