Add a script to build and push both KubeDiagrams WebApp frontend and backend container images

This commit is contained in:
Philippe MERLE
2026-07-02 13:36:41 +02:00
parent ad0d1b7bc7
commit fd6f4077cc
+13
View File
@@ -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