You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently container properties such as ip are exposed as docker.container.<alias>.ip, e.g. docker.container.jboss.ip.
In my case the docker plugin configuration is located in a corporate parent pom. All our projects extend from this parent pom. Therefore, in the parent pom, the alias is assigned dynamically as <alias>jboss-${project.artifactId}-${project.version} with <namingStrategy>alias</namingStrategy>.
This means the container ip is exposed with name docker.container.jboss-${project.artifactId}-${project.version}.ip. I am not able to access this property easily, because the name is built dynamically.
It would be nice if I could configure something like <containerPropertyKey>jboss</containerPropertyKey> in the image run configuration in order to still have dynamic container names, but with static container property keys.
The text was updated successfully, but these errors were encountered:
Currently container properties such as ip are exposed as
docker.container.<alias>.ip
, e.g.docker.container.jboss.ip
.In my case the docker plugin configuration is located in a corporate parent pom. All our projects extend from this parent pom. Therefore, in the parent pom, the alias is assigned dynamically as
<alias>jboss-${project.artifactId}-${project.version}
with<namingStrategy>alias</namingStrategy>
.This means the container ip is exposed with name
docker.container.jboss-${project.artifactId}-${project.version}.ip
. I am not able to access this property easily, because the name is built dynamically.It would be nice if I could configure something like
<containerPropertyKey>jboss</containerPropertyKey>
in the image run configuration in order to still have dynamic container names, but with static container property keys.The text was updated successfully, but these errors were encountered: