UI fixing
GeoIntel release gates / Compile, test, contracts and builds (push) Canceled after 0s
GeoIntel release gates / Python and npm vulnerability policy (push) Canceled after 0s
GeoIntel release gates / GIS image, SBOM and container scan (push) Canceled after 0s

This commit is contained in:
Jens
2026-07-28 04:44:16 +02:00
parent c76a746cd7
commit 19cf2b5211
8 changed files with 503 additions and 10 deletions
+8 -1
View File
@@ -269,7 +269,14 @@ migrate_compose_volume_if_needed() {
validate_runtime_config
install_dockerman_metadata
docker compose down --remove-orphans || true
# GeoIntel runs as ONE container started by docker run below.
# Tear down any leftover Compose stack first, including the multi-container
# development stack (db + backend + frontend) that also claims port 1202.
for compose_file in docker-compose.yml docker-compose.unraid.yml; do
if [ -f "$compose_file" ]; then
docker compose -f "$compose_file" down --remove-orphans || true
fi
done
if docker ps -a --format '{{.Names}}' | grep -qx geointel; then
docker rm -f geointel >/dev/null 2>&1 || true