Docker Registry different Auth same Registry #8426
Unanswered
Djcd
asked this question in
Request Help
Replies: 1 comment 5 replies
-
Try this: {
hostType: "docker",
baseUrl: "https://registry.example.com/v2/path1/",
username: process.env.DOCKER_USER_1,
password: process.env.DOCKER_PASSWORD_1
},
{
hostType: "docker",
baseUrl: "https://registry.example.com/v2/path2/",
username: process.env.DOCKER_USER_2,
password: process.env.DOCKER_PASSWORD_2
}
this should work for following images:
|
Beta Was this translation helpful? Give feedback.
5 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi,
i would like to ask, if you know any possibility to configure the following:
I have a private docker registry (quay based) with two different paths. The paths have different authentifications, so i tested it out like this
If i use the config with
it works like it should, but only with path1 images.
Hopefully someone has an idea how to handle this 😃 .
Kind regards and thanks in advance!
Beta Was this translation helpful? Give feedback.
All reactions