diff options
Diffstat (limited to 'cmd/podman/common.go')
-rw-r--r-- | cmd/podman/common.go | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/cmd/podman/common.go b/cmd/podman/common.go index 657535e63..8dee6cb98 100644 --- a/cmd/podman/common.go +++ b/cmd/podman/common.go @@ -197,6 +197,11 @@ var createFlags = []cli.Flag{ Name: "hostname", Usage: "Set container hostname", }, + cli.StringFlag{ + Name: "image-volume, builtin-volume", + Usage: "Tells podman how to handle the builtin image volumes. The options are: 'bind', 'tmpfs', or 'ignore' (default 'bind')", + Value: "bind", + }, cli.BoolFlag{ Name: "interactive, i", Usage: "Keep STDIN open even if not attached", |