learning Container #719
-
[INFO] [io.quarkus.container.image.jib.deployment.JibProcessor] Using base image with digest: sha256:9937373816f3fddf91ad55ee68576c6ab36e9e491f955393b33b4bddfead9843 @jesperpedersen @johnaohara Please tell me about this above thing i want to know that how project pulling images and running containers, where it implemented? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
We are using JIB (https://cloud.google.com/blog/products/application-development/introducing-jib-build-java-docker-images-better) to build the caintiner using the https://github.com/Hyperfoil/Horreum/blob/master/horreum-backend/pom.xml#L117 See the quarkus guide: https://quarkus.io/guides/container-image#jib It needs minimal configuration: https://github.com/Hyperfoil/Horreum/blob/master/horreum-backend/src/main/resources/application.properties#L94 The base image is built from this Dockerfile: https://github.com/Hyperfoil/Horreum/blob/master/horreum-backend/src/main/docker/Dockerfile.jvm.base and pushed to quay.io |
Beta Was this translation helpful? Give feedback.
We are using JIB (https://cloud.google.com/blog/products/application-development/introducing-jib-build-java-docker-images-better) to build the caintiner using the
quarkus-container-image-jib
extensions:https://github.com/Hyperfoil/Horreum/blob/master/horreum-backend/pom.xml#L117
See the quarkus guide: https://quarkus.io/guides/container-image#jib
It needs minimal configuration: https://github.com/Hyperfoil/Horreum/blob/master/horreum-backend/src/main/resources/application.properties#L94
The base image is built from this Dockerfile: https://github.com/Hyperfoil/Horreum/blob/master/horreum-backend/src/main/docker/Dockerfile.jvm.base and pushed to quay.io