When deployAtEnd is set, d-m-p should push docker images after a multi-module build
See original GitHub issueDescription
The idea is cloned from maven-deploy-plugin. When the user property deployAtEnd is set, d-m-p should push all Docker images at the end of multi module build. These docker images are created during this multi module build.
- If it’s a feature request, what is your use case : In a CI build I want to ensure that the multi module build runs successfully before the docker images are pushed to the registry.
Workaround:
mvn deploy -DdeployAtEnd -Ddocker.skip.push
mvn docker:push
I think it’s relate to #745
Issue Analytics
- State:
- Created 4 years ago
- Reactions:2
- Comments:12
Top Results From Across the Web
docker push - Docker Documentation
Use docker image push to share your images to the Docker Hub registry or to a self-hosted one. Refer to the docker image...
Read more >Building docker image for multi module project pushing jars to ...
So ideally when the build happens it the image should have a classpath where both modules jar are to be present. But with...
Read more >Build maven project with push to docker hub in same time
in this article i want explain about how i can build maven project and push to docker hub after install phase in maven...
Read more >Containerizing Maven/Gradle based Multi Module Spring Boot ...
For Maven, we need to configure multi module projects with <modules> in Root ... Build and create docker images for all modules from...
Read more >Registry Magic with docker-maven-plugin - Roland Huß
Pushing built images to a registry with docker:push. In both cases you can define your build agnostic from any registry by omitting the...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
I release the first version of the Maven Extension. It is available in Maven Central
I started a PoC for this issue.
Currently, test infrastructure and the skeleton is set up.