From 7dbee01675cac732a5a0fb3cac07ea4efdd9f7de Mon Sep 17 00:00:00 2001 From: Martin Bhuong Date: Fri, 26 Jul 2024 09:39:40 +0200 Subject: [PATCH 1/2] implement network options --- imageroot/systemd/user/zitadel.service | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/imageroot/systemd/user/zitadel.service b/imageroot/systemd/user/zitadel.service index 672f486..45bab4c 100644 --- a/imageroot/systemd/user/zitadel.service +++ b/imageroot/systemd/user/zitadel.service @@ -24,7 +24,8 @@ ExecStartPre=/usr/bin/podman pod create --infra-conmon-pidfile %t/zitadel.pid \ --name zitadel \ --publish 127.0.0.1:${TCP_PORT}:8080 \ --replace \ - --network=slirp4netns:allow_host_loopback=true + --network=slirp4netns:allow_host_loopback=true \ + --add-host=accountprovider:10.0.2.2 ExecStart=/usr/bin/podman pod start --pod-id-file %t/zitadel.pod-id ExecStop=/usr/bin/podman pod stop --ignore --pod-id-file %t/zitadel.pod-id -t 10 ExecStopPost=/usr/bin/podman pod rm --ignore -f --pod-id-file %t/zitadel.pod-id From 2cfd3ec386212cc23234a7e91b1220b5bf1c6729 Mon Sep 17 00:00:00 2001 From: Martin Bhuong Date: Fri, 26 Jul 2024 09:47:58 +0200 Subject: [PATCH 2/2] update version to 2.57.0 --- build-images.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-images.sh b/build-images.sh index ed232ca..3057e24 100644 --- a/build-images.sh +++ b/build-images.sh @@ -14,7 +14,7 @@ images=() repobase="${REPOBASE:-ghcr.io/geniusdynamics}" # Configure the image name reponame="zitadel" -APP_VERSION="v2.56.0-debug" +APP_VERSION="v2.57.0-debug" # Create a new empty container image container=$(buildah from scratch)