summaryrefslogtreecommitdiff
path: root/cmd/podman/common/create.go
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2020-07-21 13:43:58 -0400
committerGitHub <noreply@github.com>2020-07-21 13:43:58 -0400
commite5b3563a897395030c5714ac014bbad79f24ede9 (patch)
tree6a1f676671c1e94a26d2bb7dbc19618c91198f75 /cmd/podman/common/create.go
parent26410e4f4e2a93f2e9ecc2cda7ef59d888285b39 (diff)
parentfc52aa6704c77c4fcd87471b90d688e7b8315f28 (diff)
downloadpodman-e5b3563a897395030c5714ac014bbad79f24ede9.tar.gz
podman-e5b3563a897395030c5714ac014bbad79f24ede9.tar.bz2
podman-e5b3563a897395030c5714ac014bbad79f24ede9.zip
Merge pull request #7036 from rhatdan/docker
Add noop function disable-content-trust
Diffstat (limited to 'cmd/podman/common/create.go')
-rw-r--r--cmd/podman/common/create.go4
1 files changed, 4 insertions, 0 deletions
diff --git a/cmd/podman/common/create.go b/cmd/podman/common/create.go
index a26bbf718..6ebf58204 100644
--- a/cmd/podman/common/create.go
+++ b/cmd/podman/common/create.go
@@ -155,6 +155,10 @@ func GetCreateFlags(cf *ContainerCLIOpts) *pflag.FlagSet {
"device-write-iops", []string{},
"Limit write rate (IO per second) to a device (e.g. --device-write-iops=/dev/sda:1000)",
)
+ createFlags.Bool(
+ "disable-content-trust", false,
+ "This is a Docker specific option and is a NOOP",
+ )
createFlags.String("entrypoint", "",
"Overwrite the default ENTRYPOINT of the image",
)