mirror of
https://github.com/docker/compose.git
synced 2026-08-31 23:03:55 +00:00
Merge pull request #1306 from aiordache/compose_exec_cmd
Add `compose exec` command
This commit is contained in:
commit
5e7203dbe4
10 changed files with 284 additions and 0 deletions
|
|
@ -87,3 +87,7 @@ func (c *composeService) RunOneOffContainer(ctx context.Context, project *types.
|
|||
func (c *composeService) Remove(ctx context.Context, project *types.Project, options compose.RemoveOptions) ([]string, error) {
|
||||
return nil, errdefs.ErrNotImplemented
|
||||
}
|
||||
|
||||
func (c *composeService) Exec(ctx context.Context, project *types.Project, opts compose.RunOptions) error {
|
||||
return errdefs.ErrNotImplemented
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue