Add compose run command

Signed-off-by: aiordache <anca.iordache@docker.com>
This commit is contained in:
aiordache 2020-12-03 09:24:15 +01:00 committed by Guillaume Tardif
parent a17e397df3
commit 412385c495
12 changed files with 491 additions and 2 deletions

View file

@ -71,3 +71,11 @@ func (c *composeService) List(context.Context, string) ([]compose.Stack, error)
func (c *composeService) Convert(context.Context, *types.Project, compose.ConvertOptions) ([]byte, error) {
return nil, errdefs.ErrNotImplemented
}
func (c *composeService) CreateOneOffContainer(ctx context.Context, project *types.Project, opts compose.RunOptions) (string, error) {
return "", errdefs.ErrNotImplemented
}
func (c *composeService) Run(ctx context.Context, container string, detach bool) error {
return errdefs.ErrNotImplemented
}