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

Elasticbeanstalk nginx extension for client_max_body_size not working

For an application I deploy on beanstalk, getting the error client intended to send too large body: 1505618 bytes Platform: Java 8 running on 64bit Amazon Linux/2.11.20 Added .platform/nginx/conf.d/proxy.conf containing client_max_body_size 64M; to root. Added <resource> <directory>.platform</directory> <targetPath>.platform</targetPath> <filtering>true</filtering> </resource>…

VIEW QUESTION
Back To Top
Search