mirror of
https://github.com/docker/compose.git
synced 2026-08-27 03:45:29 +00:00
Add compose ls command for ECS
Signed-off-by: aiordache <anca.iordache@docker.com>
This commit is contained in:
parent
a0a0e391cb
commit
02be463fd7
10 changed files with 202 additions and 45 deletions
|
|
@ -135,7 +135,9 @@ func (cs *composeService) Down(ctx context.Context, project string) error {
|
|||
func (cs *composeService) Ps(ctx context.Context, project string) ([]compose.ServiceStatus, error) {
|
||||
return nil, errdefs.ErrNotImplemented
|
||||
}
|
||||
|
||||
func (cs *composeService) List(ctx context.Context, project string) ([]compose.Stack, error) {
|
||||
return nil, errdefs.ErrNotImplemented
|
||||
}
|
||||
func (cs *composeService) Logs(ctx context.Context, project string, w io.Writer) error {
|
||||
return errdefs.ErrNotImplemented
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue