This commit is contained in:
+23
-17
@@ -1,4 +1,4 @@
|
||||
#!/bin/sh
|
||||
#!/bin/bash
|
||||
|
||||
# script/cibuild:
|
||||
|
||||
@@ -6,20 +6,26 @@ set -e
|
||||
|
||||
cd "$(dirname "$0")/.."
|
||||
|
||||
echo " => Baue Image localhost/kontor-spring:0.3.0"
|
||||
buildah build -t kontor-spring:0.3.0 kontor-spring
|
||||
echo " => Baue Image localhost/kontor-api:0.3.0"
|
||||
buildah build --volume /home/tpeetz/projects/kontor/kontor-model:/container/kontor-model -t kontor-api:0.3.0 kontor-api
|
||||
echo " => Baue Image localhost/kontor-quarkus:0.3.0"
|
||||
buildah build -t kontor-quarkus:0.3.0 kontor-quarkus
|
||||
echo " => Baue Image localhost/kontor-echo:0.3.0"
|
||||
buildah build -t kontor-echo:0.3.0 kontor-echo
|
||||
echo " => Baue Image localhost/kontor-fiber:0.3.0"
|
||||
buildah build -t kontor-fiber:0.3.0 kontor-fiber
|
||||
echo " => Baue Image localhost/kontor-javalin:0.3.0"
|
||||
buildah build -t kontor-javalin:0.3.0 kontor-javalin
|
||||
echo " => Baue Image localhost/kontor-vue:0.3.0"
|
||||
buildah build -t kontor-vue:0.3.0 kontor-vue
|
||||
echo " => Baue Image localhost/kontor-angular:0.3.0"
|
||||
buildah build -t kontor-angular:0.3.0 kontor-angular
|
||||
. ./version
|
||||
|
||||
echo " => Baue Image localhost/kontor-spring:$kontorVersion"
|
||||
#buildah build -t kontor-spring:$kontorVersion kontor-spring
|
||||
cd kontor-spring
|
||||
./gradlew bootJar
|
||||
cd ..
|
||||
buildah build -f Containerfile.local -t kontor-spring:$kontorVersion kontor-spring
|
||||
echo " => Baue Image localhost/kontor-api:$kontorVersion"
|
||||
buildah build --volume /home/tpeetz/projects/kontor/kontor-model:/container/kontor-model -t kontor-api:$kontorVersion kontor-api
|
||||
echo " => Baue Image localhost/kontor-quarkus:$kontorVersion"
|
||||
buildah build -t kontor-quarkus:$kontorVersion kontor-quarkus
|
||||
echo " => Baue Image localhost/kontor-echo:$kontorVersion"
|
||||
buildah build -t kontor-echo:$kontorVersion kontor-echo
|
||||
echo " => Baue Image localhost/kontor-fiber:$kontorVersion"
|
||||
buildah build -t kontor-fiber:$kontorVersion kontor-fiber
|
||||
echo " => Baue Image localhost/kontor-javalin:$kontorVersion"
|
||||
buildah build -t kontor-javalin:$kontorVersion kontor-javalin
|
||||
echo " => Baue Image localhost/kontor-vue:$kontorVersion"
|
||||
buildah build -t kontor-vue:$kontorVersion kontor-vue
|
||||
echo " => Baue Image localhost/kontor-angular:$kontorVersion"
|
||||
buildah build -t kontor-angular:$kontorVersion kontor-angular
|
||||
|
||||
|
||||
Reference in New Issue
Block a user