diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2020-05-08 15:17:26 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-08 15:17:26 +0200 |
commit | 7c63059287d40184944b7e21ad44cc6bbb9d5925 (patch) | |
tree | 19c94341bf42d1cd02ed6a77347f30773cb00129 /pkg/domain/entities/engine_container.go | |
parent | ff1c59065e9d2ef0c03ce8de444b489630d00b3c (diff) | |
parent | 61828cf4807757eb9b85151a0e425a1790f06c27 (diff) | |
download | podman-7c63059287d40184944b7e21ad44cc6bbb9d5925.tar.gz podman-7c63059287d40184944b7e21ad44cc6bbb9d5925.tar.bz2 podman-7c63059287d40184944b7e21ad44cc6bbb9d5925.zip |
Merge pull request #6117 from vrothberg/v2-runlabel
container runlabel
Diffstat (limited to 'pkg/domain/entities/engine_container.go')
-rw-r--r-- | pkg/domain/entities/engine_container.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/pkg/domain/entities/engine_container.go b/pkg/domain/entities/engine_container.go index 1bfac4514..b2869b0ca 100644 --- a/pkg/domain/entities/engine_container.go +++ b/pkg/domain/entities/engine_container.go @@ -34,6 +34,7 @@ type ContainerEngine interface { ContainerRestore(ctx context.Context, namesOrIds []string, options RestoreOptions) ([]*RestoreReport, error) ContainerRm(ctx context.Context, namesOrIds []string, options RmOptions) ([]*RmReport, error) ContainerRun(ctx context.Context, opts ContainerRunOptions) (*ContainerRunReport, error) + ContainerRunlabel(ctx context.Context, label string, image string, args []string, opts ContainerRunlabelOptions) error ContainerStart(ctx context.Context, namesOrIds []string, options ContainerStartOptions) ([]*ContainerStartReport, error) ContainerStats(ctx context.Context, namesOrIds []string, options ContainerStatsOptions) error ContainerStop(ctx context.Context, namesOrIds []string, options StopOptions) ([]*StopReport, error) |