diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2019-03-11 11:43:03 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-11 11:43:03 -0700 |
commit | 7038cac53c4c93cd088fdbb097eee8d45494c3b8 (patch) | |
tree | 958df194bdd61cc209efa0480ea52634149f6250 /cmd/podman/run.go | |
parent | b8863b260a7885981def2b02b5acc7c9a209e0c6 (diff) | |
parent | 651520389d239f335248a27595d39a815ef95238 (diff) | |
download | podman-7038cac53c4c93cd088fdbb097eee8d45494c3b8.tar.gz podman-7038cac53c4c93cd088fdbb097eee8d45494c3b8.tar.bz2 podman-7038cac53c4c93cd088fdbb097eee8d45494c3b8.zip |
Merge pull request #2578 from baude/movecreate
preparation for remote-client create container
Diffstat (limited to 'cmd/podman/run.go')
-rw-r--r-- | cmd/podman/run.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cmd/podman/run.go b/cmd/podman/run.go index ff09e670d..130c5a32c 100644 --- a/cmd/podman/run.go +++ b/cmd/podman/run.go @@ -10,6 +10,7 @@ import ( "github.com/containers/libpod/cmd/podman/cliconfig" "github.com/containers/libpod/cmd/podman/libpodruntime" + "github.com/containers/libpod/cmd/podman/shared" "github.com/containers/libpod/libpod" "github.com/containers/libpod/pkg/rootless" opentracing "github.com/opentracing/opentracing-go" @@ -66,7 +67,7 @@ func runCmd(c *cliconfig.RunValues) error { } defer runtime.Shutdown(false) - ctr, createConfig, err := createContainer(&c.PodmanCommand, runtime) + ctr, createConfig, err := shared.CreateContainer(getContext(), &c.PodmanCommand, runtime) if err != nil { return err } |