skip to Main Content

401 Unauthorized when using jib to create docker image

I am on windows and this is the plugin configuration: <plugin> <groupId>com.google.cloud.tools</groupId> <artifactId>jib-maven-plugin</artifactId> <version>3.2.1</version> <configuration> <container> <ports> <port>8080</port> </ports> <format>OCI</format> </container> </configuration> </plugin> This is the command I run: .mvnw clean install jib:dockerBuild -Dimage=fullstack:v1 This is the error I keep…

VIEW QUESTION
Back To Top
Search