integration von kontor-angular

This commit is contained in:
2026-04-18 00:29:25 +02:00
parent 9dce493c2a
commit b59ecc6ac9
5 changed files with 29 additions and 3 deletions
+20 -1
View File
@@ -8,7 +8,7 @@ cd "$(dirname "$0")/.."
script/bootstrap
script/cibuild
#script/cibuild
echo "==> Setting up pod kontor"
@@ -30,6 +30,7 @@ else
-p 8500:8500 \
-p 8600:8600 \
-p 8700:80 \
-p 8800:8800 \
-p 8900:8080 \
-p 61616:61616 \
-p 8161:8161 \
@@ -235,3 +236,21 @@ else
localhost/kontor-vue:0.3.0
fi
echo "==> Setting up container kontor-angular"
if podman image exists localhost/kontor-angular:0.3.0; then
echo " => Image localhost/kontor-angular:0.3.0 available"
fi
if podman container exists kontor-angular; then
if podman ps -q --filter "name=kontor-angular"; then
echo " => kontor-angular is running"
fi
else
podman run -d \
--replace \
--pod kontor \
--name kontor-angular \
--label "io.containers.autoupdate=local" \
--label "PODMAN_SYSTEMD_UNIT=container-kontor-angular.service" \
localhost/kontor-angular:0.3.0
fi