From 2211a84881edb6d9f5c8fdd6b90e178c468a7e8b Mon Sep 17 00:00:00 2001 From: Gene Liverman Date: Thu, 29 Feb 2024 09:03:59 -0500 Subject: [PATCH] Add additional examples logins to oidc results page Replicate what was done in #384 --- auth_server/authn/data/oidc_auth_result.tmpl | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/auth_server/authn/data/oidc_auth_result.tmpl b/auth_server/authn/data/oidc_auth_result.tmpl index e2c5fe0b..86021bc0 100644 --- a/auth_server/authn/data/oidc_auth_result.tmpl +++ b/auth_server/authn/data/oidc_auth_result.tmpl @@ -9,9 +9,11 @@

You are successfully authenticated for the Docker Registry. - Use the following username and password to login into the registry: + Log into the registry using one of these commands:


$ docker login -u {{.Username}} -p {{.Password}} {{if .RegistryUrl}}{{.RegistryUrl}}{{else}}docker.example.com{{end}}
+
$ podman login -u {{.Username}} -p {{.Password}} {{if .RegistryUrl}}{{.RegistryUrl}}{{else}}docker.example.com{{end}}
+
$ nerdctl login -u {{.Username}} -p {{.Password}} {{if .RegistryUrl}}{{.RegistryUrl}}{{else}}docker.example.com{{end}}