Clarify how docker image publishing registry is determined

Closes gh-31820
This commit is contained in:
Scott Frederick 2022-07-20 17:29:40 -05:00
parent a7dfeae09c
commit 4e0b3aad9f
5 changed files with 6 additions and 6 deletions

View File

@ -373,6 +373,9 @@ The generated image can be published to a Docker registry by enabling a `publish
If the Docker registry requires authentication, the credentials can be configured using `docker.publishRegistry` properties.
If the Docker registry does not require authentication, the `docker.publishRegistry` configuration can be omitted.
NOTE: The registry that the image will be published to is determined by the registry part of the image name (`docker.example.com` in these examples).
If `docker.publishRegistry` credentials are configured and include a `url` property, this value is passed to the registry but is not used to determine the publishing registry location.
[source,groovy,indent=0,subs="verbatim,attributes",role="primary"]
.Groovy
----

View File

@ -15,8 +15,6 @@ tasks.named("bootBuildImage") {
publishRegistry {
username = "user"
password = "secret"
url = "https://docker.example.com/v1/"
email = "user@example.com"
}
}
}

View File

@ -18,8 +18,6 @@ tasks.named<BootBuildImage>("bootBuildImage") {
publishRegistry {
username = "user"
password = "secret"
url = "https://docker.example.com/v1/"
email = "user@example.com"
}
}
}

View File

@ -343,6 +343,9 @@ The generated image can be published to a Docker registry by enabling a `publish
If the Docker registry requires authentication, the credentials can be configured using `docker.publishRegistry` parameters.
If the Docker registry does not require authentication, the `docker.publishRegistry` configuration can be omitted.
NOTE: The registry that the image will be published to is determined by the registry part of the image name (`docker.example.com` in these examples).
If `docker.publishRegistry` credentials are configured and include a `url` parameter, this value is passed to the registry but is not used to determine the publishing registry location.
[source,xml,indent=0,subs="verbatim,attributes",tabsize=4]
----
include::../maven/packaging-oci-image/docker-pom.xml[tags=docker]

View File

@ -15,8 +15,6 @@
<publishRegistry>
<username>user</username>
<password>secret</password>
<url>https://docker.example.com/v1/</url>
<email>user@example.com</email>
</publishRegistry>
</docker>
</configuration>