diff options
Diffstat (limited to 'cmd/podman/start.go')
-rw-r--r-- | cmd/podman/start.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/podman/start.go b/cmd/podman/start.go index 06b8f815f..fb16e08cd 100644 --- a/cmd/podman/start.go +++ b/cmd/podman/start.go @@ -121,7 +121,7 @@ func startCmd(c *cli.Context) error { continue } // Handle non-attach start - if err := ctr.Start(); err != nil { + if err := ctr.Start(getContext()); err != nil { if lastError != nil { fmt.Fprintln(os.Stderr, lastError) } |