-
Notifications
You must be signed in to change notification settings - Fork 40.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Clarify how docker image publishing registry is determined
Closes gh-31820
- Loading branch information
1 parent
a7dfeae
commit 4e0b3aa
Showing
5 changed files
with
6 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,8 +15,6 @@ tasks.named("bootBuildImage") { | |
publishRegistry { | ||
username = "user" | ||
password = "secret" | ||
url = "https://docker.example.com/v1/" | ||
email = "[email protected]" | ||
} | ||
} | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,8 +18,6 @@ tasks.named<BootBuildImage>("bootBuildImage") { | |
publishRegistry { | ||
username = "user" | ||
password = "secret" | ||
url = "https://docker.example.com/v1/" | ||
email = "[email protected]" | ||
} | ||
} | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,8 +15,6 @@ | |
<publishRegistry> | ||
<username>user</username> | ||
<password>secret</password> | ||
<url>https://docker.example.com/v1/</url> | ||
<email>[email protected]</email> | ||
</publishRegistry> | ||
</docker> | ||
</configuration> | ||
|