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
DockerTasks have properties that correspond to all the properties in DockerPluginExtension, and it seems to treat all of them as defaults that can be overridden by a specific task, with the exception of registry. Images aren't tagged with the registry URL unless specified in the individual tasks.
registry should be treated the same as the other properties: as a default for the tasks to inherit.
The text was updated successfully, but these errors were encountered:
I just realized that getRegistry()does return the "default" value as I expected. The problem is getDefaultImageTag() uses registry directly instead of calling getRegistry().
I can actually work around it by adding this line to my build.gradle:
DockerTasks
have properties that correspond to all the properties inDockerPluginExtension
, and it seems to treat all of them as defaults that can be overridden by a specific task, with the exception ofregistry
. Images aren't tagged with the registry URL unless specified in the individual tasks.registry
should be treated the same as the other properties: as a default for the tasks to inherit.The text was updated successfully, but these errors were encountered: