From 95f272a0c55d2e33de1f69ce3c7f029c2c3c2c0d Mon Sep 17 00:00:00 2001 From: baude Date: Tue, 17 Apr 2018 15:56:46 -0500 Subject: Allow podman start to attach to a running container If a container is already running, and a user asks to start it -a (attach), we should honor this and attach to the container. Signed-off-by: baude Closes: #634 Approved by: baude --- cmd/podman/start.go | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'cmd/podman') diff --git a/cmd/podman/start.go b/cmd/podman/start.go index 00d153904..8f6fc5800 100644 --- a/cmd/podman/start.go +++ b/cmd/podman/start.go @@ -96,6 +96,14 @@ func startCmd(c *cli.Context) error { inputStream = nil } + ctrState, err := ctr.State() + if err != nil { + return errors.Wrapf(err, "unable to get container state") + } + if ctrState == libpod.ContainerStateRunning { + return attachCtr(ctr, os.Stdout, os.Stderr, inputStream, c.String("detach-keys"), c.BoolT("sig-proxy")) + } + if err := startAttachCtr(ctr, os.Stdout, os.Stderr, inputStream, c.String("detach-keys"), c.Bool("sig-proxy")); err != nil { return errors.Wrapf(err, "unable to start container %s", ctr.ID()) } -- cgit v1.2.3-54-g00ecf