mirror of
https://github.com/okxlin/appstore.git
synced 2026-09-23 08:01:00 +00:00
Package OpenCloud 7.3.0 with its official rolling image and a constrained Traefik TLS sidecar. Isolate each installation on a dedicated network and preserve persisted data across lifecycle operations.\n\nCloses #5172
9 lines
176 B
Bash
Executable File
9 lines
176 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
if command -v docker-compose >/dev/null 2>&1; then
|
|
docker-compose down --remove-orphans
|
|
else
|
|
docker compose down --remove-orphans
|
|
fi
|