diff options
author | Brent Baude <bbaude@redhat.com> | 2020-04-04 08:35:23 -0500 |
---|---|---|
committer | Brent Baude <bbaude@redhat.com> | 2020-04-06 09:26:11 -0500 |
commit | 5e0b4497365f9b3c2d795e5771a3abec7cd24cbb (patch) | |
tree | 169fd388ae4b8576c7a4e451276447a88343e79c /pkg/domain/entities/containers.go | |
parent | ba64186750a23675f42744ca4203b524e7b1b378 (diff) | |
download | podman-5e0b4497365f9b3c2d795e5771a3abec7cd24cbb.tar.gz podman-5e0b4497365f9b3c2d795e5771a3abec7cd24cbb.tar.bz2 podman-5e0b4497365f9b3c2d795e5771a3abec7cd24cbb.zip |
podmanv2 start
add the ability to start containers
Signed-off-by: Brent Baude <bbaude@redhat.com>
Diffstat (limited to 'pkg/domain/entities/containers.go')
-rw-r--r-- | pkg/domain/entities/containers.go | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/pkg/domain/entities/containers.go b/pkg/domain/entities/containers.go index cf907eb1b..6b4bb9ba2 100644 --- a/pkg/domain/entities/containers.go +++ b/pkg/domain/entities/containers.go @@ -186,3 +186,24 @@ type ExecOptions struct { User string WorkDir string } + +// ContainerStartOptions describes the val from the +// CLI needed to start a container +type ContainerStartOptions struct { + Attach bool + DetachKeys string + Interactive bool + Latest bool + SigProxy bool + Stdout *os.File + Stderr *os.File + Stdin *os.File +} + +// ContainerStartReport describes the response from starting +// containers from the cli +type ContainerStartReport struct { + Id string + Err error + ExitCode int +} |