Simple mode docker.tags property is ignored
See original GitHub issueDescription
docker.tags are ignored in simple mode
Info
- d-m-p version : 0.33.0
- Maven version (
mvn -v
) : 3.6.3
- Docker version : Docker version 18.09.3, build 774a1f4eee
- Reproduce : add additional tag with -Ddocker.tags.idx=foo
I’ve overriden default name with tag A, but I need an additional tag B, which is ignored:
<properties>
<docker.name>${project.artifactId}:${project.version}</docker.name>
<docker.tags.0>foo</docker.tags.0>
</properties>
Issue Analytics
- State:
- Created 3 years ago
- Comments:7
Top Results From Across the Web
Dockerfile reference - Docker Documentation
Dockerfiles use a simple DSL which allows you to automate the steps you would normally ... and instructions (such as RUN ) are...
Read more >docker-maven-plugin/_property_configuration.adoc at master
By default, property based configuration uses only properties, ignoring any <build> and <run> sections. To combine values from both sources, use the property...
Read more >fabric8io/docker-maven-plugin
See Simple Dockerfile build for details of this zero XML configuration mode. Images that are built with this plugin can be pushed to...
Read more >10 best practices to containerize Node.js web applications ...
A simple Node.js Docker image. Most blog articles we've seen start and finish along the lines of the following basic Dockerfile instructions for ......
Read more >Docker@2 - Docker v2 task - Microsoft Learn
Build or push Docker images, login or logout, start or stop containers, ... for the command parameter, the arguments property is ignored.
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
@manderson23 : cool, thanks a lot. I’ll try to reproduce
I wonder if setting
-Ddocker.imagePropertyConfiguration=override
does the trick …