From 46b7d8d1e09e45ab704013f1c9ad88c3cd21ceaf Mon Sep 17 00:00:00 2001 From: Valentin Rothberg Date: Thu, 15 Dec 2022 10:24:44 +0100 Subject: [PATCH] create/pull --help: list pull policies [NO NEW TESTS NEEDED] Fixes: #16845 Signed-off-by: Valentin Rothberg --- cmd/podman/common/create.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/podman/common/create.go b/cmd/podman/common/create.go index 7f3db60b83..853e37b59a 100644 --- a/cmd/podman/common/create.go +++ b/cmd/podman/common/create.go @@ -366,7 +366,7 @@ func DefineCreateFlags(cmd *cobra.Command, cf *entities.ContainerCreateOptions, createFlags.StringVar( &cf.Pull, pullFlagName, cf.Pull, - `Pull image policy`, + `Pull image policy ("always"|"missing"|"never"|"newer")`, ) _ = cmd.RegisterFlagCompletionFunc(pullFlagName, AutocompletePullOption)