Publish LumaOps source

This commit is contained in:
LumaOps release export
2026-09-03 01:18:36 +02:00
commit 7f1c0e5f71
2363 changed files with 501543 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
#!/usr/bin/env bash
set -euo pipefail
if ! command -v docker >/dev/null 2>&1; then
echo "[ERROR] docker command not found in PATH."
echo "[HINT] Run this on een host met Docker geïnstalleerd en beschikbaar."
exit 1
fi
echo "[INFO] Pull latest compose image/build context and recreate service"
docker compose down
docker compose build --pull --no-cache
docker compose up -d --force-recreate --remove-orphans
docker compose ps