From 88673a5fcfcedb3ab3f1039a46b3eba912f35e5c Mon Sep 17 00:00:00 2001 From: Qi Wang Date: Tue, 9 Oct 2018 09:26:47 -0400 Subject: Support auth file environment variable & add change to man pages Signed-off-by: Qi Wang --- cmd/podman/search.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'cmd/podman/search.go') diff --git a/cmd/podman/search.go b/cmd/podman/search.go index 49b1b7f7b..fa11dad32 100644 --- a/cmd/podman/search.go +++ b/cmd/podman/search.go @@ -25,7 +25,7 @@ var ( searchFlags = []cli.Flag{ cli.StringFlag{ Name: "authfile", - Usage: "Path of the authentication file. Default is ${XDG_RUNTIME_DIR}/containers/auth.json", + Usage: "Path of the authentication file. Default is ${XDG_RUNTIME_DIR}/containers/auth.json. Use REGISTRY_AUTH_FILE environment variable to override. ", }, cli.StringSliceFlag{ Name: "filter, f", @@ -114,7 +114,7 @@ func searchCmd(c *cli.Context) error { noTrunc: c.Bool("no-trunc"), limit: c.Int("limit"), filter: c.StringSlice("filter"), - authfile: c.String("authfile"), + authfile: getAuthFile(c.String("authfile")), } regAndSkipTLS, err := getRegistriesAndSkipTLS(c, registry) if err != nil { -- cgit v1.2.3-54-g00ecf