mirror of
https://github.com/okxlin/appstore.git
synced 2026-09-23 16:01:01 +00:00
Package official Shlink 5.1.5 and latest images with the verified 1Panel PostgreSQL Runtime selector. Fresh install, API workflow, restart, uninstall, and native upgrade were validated on moelin/1panel:v2; documented default mitigations cover the reviewed High CVEs.
9 lines
196 B
Bash
Executable File
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
|