mirror of
https://github.com/docker/compose.git
synced 2026-08-27 03:45:29 +00:00
Add compose run command
Signed-off-by: aiordache <anca.iordache@docker.com>
This commit is contained in:
parent
a17e397df3
commit
412385c495
12 changed files with 491 additions and 2 deletions
|
|
@ -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
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue