Clear History

This commit is contained in:
2023-05-11 17:44:13 +02:00
commit 4acb9b9ae8
77 changed files with 5363 additions and 0 deletions

12
code/images/build.sh Executable file
View File

@@ -0,0 +1,12 @@
#!/bin/bash
cd "$(dirname "${BASH_SOURCE[0]}")"
eval $(minikube docker-env --shell bash)
function build() {
docker build -t $1 ./$1
}
build "idle" & build "sidecar"
wait