jib Questions

4

Solved

Docker: 27.1.2 Java: 17.0.11 Maven: 3.8.6 Jib: 3.2.1 OS: Ubuntu 22.04.4 I am using a Jhipster Spring application. Until now, my application has been built and running without any problems. But sudd...
Doggone asked 19/10 at 6:27

13

I am on windows and this is the plugin configuration: <plugin> <groupId>com.google.cloud.tools</groupId> <artifactId>jib-maven-plugin</artifactId> <version>3....
Intoxicated asked 17/5, 2022 at 15:49

6

I have a simple SpringBoot application and I want to build docker image using Jib Maven plugin. Following is my plugin configuration: <plugin> <groupId>com.google.cloud.tools</grou...
Isocline asked 26/3, 2020 at 7:46

2

Solved

When using jib-gradle-plugin to build and push to AWS ECR, it requires me to install aws ecr credential helper otherwise the build complains "The system does not have docker-credential-ecr-log...
Detonator asked 26/9, 2020 at 6:59

2

Solved

Using the jib-maven-plugin I'd like to build an image with mulitple tags. While mvn jib:build basically works fine, it "only" tags the image with latest. My Maven pom.xml defines the foll...
Technical asked 9/4, 2021 at 8:10

4

Solved

Is there one equivalent of Google's JIB or BuildPacks for Node.JS ? It is my understanding that JIB allows to build OCI container images from within the project's build tool like Gradle or Maven, ...
Apfelstadt asked 4/5, 2020 at 17:39

1

Solved

I have a Springboot application, packaged in a docker image with jib version 3.2.0. And when i tried to start on my linux server, i have an error immediatly. [0.012s][warning][os,thread] Failed to ...
Throughcomposed asked 8/6, 2022 at 13:49

1

Solved

Hi using Quarkus with Jib extension and setting: quarkus.jib.base-jvm-image=azul/zulu-openjdk-alpine:11 The build fails with the below error. I'm on Mac OS X, with Docker Desktop. This seems to ha...
Teodorateodorico asked 24/5, 2022 at 15:19

3

Solved

Spring Boot 2.3.x adds the capability of building a Docker image using their plugin via spring-boot:build-image. Jib seems to allow the same functionality but is not limited to Spring boot. Is ther...
Constitutionally asked 24/9, 2020 at 14:1

1

Solved

It looks like starting with Jib 3.0; you no longer have default distroless images for your Java applications. Instead, you will get an adoptOpenjdk base image if you don't specify one. You still ca...
Monies asked 16/4, 2021 at 18:48

3

Solved

I have a base java image with some pre defined java_opts as a environmental variable. How can I use them in plugin? <plugin> <groupId>com.google.cloud.tools</groupId> <arti...
Chelyabinsk asked 16/12, 2019 at 13:15

3

In my springboot project, there are three configuration files application.yml --> used in local development application-test.yml --> running in a test environment application-prod.yml --> runn...
Doralia asked 5/11, 2019 at 2:9

1

Solved

For the past few months I have been experimenting with docker and have enjoyed the benefits of building and running java applications inside containers. A few weeks ago I stumbled upon the jib mave...
Berardo asked 28/9, 2020 at 15:4

1

Solved

So I'm trying to add an ssl certificate for my project, on my local machine I was able to add it by simply following a keytool command and then it worked. But when I try to do the same on the machi...
Lennox asked 20/7, 2020 at 8:19

1

Solved

I'm following Spring Boot Docker Tutorial from here. I got the exact result while having an internet connection. Now I need to produce the same result in an environment without an internet connect...
Unexpressed asked 13/4, 2020 at 13:44

1

I add jib into a pom.xml file as the followings: <properties> <docker.org>springcloudstream</docker.org> <docker.version>${project.version}</docker.version> </pr...
jib
Spindry asked 11/4, 2020 at 17:12

1

Solved

I use jib plugin to create image, while docker-compose needs Dockerfile. How can i Link already made image by jib to my docker-compose so it can build my backend in process?
Lucielucien asked 26/3, 2020 at 7:34

1

I need to create a custom image based on Ubuntu that contains software that I need to install using apt. For example: sudo apt-get install pcscd sudo apt-get install pcsc-tools # same as pcsc-lit...
Cadenza asked 4/11, 2019 at 3:47

1

Solved

I am trying to specify a mount point in a kubernetes deployment descriptor and for that I need there to be a directory volumeMounts: - name: volume-mount mountPath: /dev/bus/usb/003/005 to cor...
jib
Benkley asked 1/11, 2019 at 13:14

1

Solved

I'm using the jib Gradle plugin to create a docker image and push it to the Azure Container Registry. I've added username/password credentials to Jenkins so far and need to pass them to Gradle. Acc...
Philipines asked 25/10, 2019 at 16:16

2

Solved

I'm trying to get my head around building Docker images with Google's Jib project and Jib Maven Plugin. I don't understand how to specify the JRE version. I understand I can customize in the plug...
Seismography asked 5/5, 2019 at 11:53

1

I have a Java application containerized (docker) based on Distroless and I would like to add an SSL certificate in JVM's store. I see an option like using Docker's RUN command to import the SSL ce...
Brandenbrandenburg asked 1/3, 2019 at 16:20
1

© 2022 - 2024 — McMap. All rights reserved.