From fd6f4077cc28c05c55efa1fe2bcf9e76adbc1733 Mon Sep 17 00:00:00 2001 From: Philippe MERLE Date: Thu, 2 Jul 2026 13:36:41 +0200 Subject: [PATCH] Add a script to build and push both KubeDiagrams WebApp frontend and backend container images --- webapp/build-and-push-images.sh | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100755 webapp/build-and-push-images.sh diff --git a/webapp/build-and-push-images.sh b/webapp/build-and-push-images.sh new file mode 100755 index 0000000..d81f4e9 --- /dev/null +++ b/webapp/build-and-push-images.sh @@ -0,0 +1,13 @@ +#! /bin/sh + +# Build the KubeDiagrams Frontend image +docker buildx build -t philippemerle/kubediagrams-frontend:latest frontend + +# Push the KubeDiagrams Frontend image +docker image push philippemerle/kubediagrams-frontend:latest + +# Build the KubeDiagrams Backend image +docker buildx build -t philippemerle/kubediagrams-backend:latest backend + +# Push the KubeDiagrams Backend image +docker image push philippemerle/kubediagrams-backend:latest