Add compose ls command for ECS

Signed-off-by: aiordache <anca.iordache@docker.com>
This commit is contained in:
aiordache 2020-09-04 13:20:11 +02:00
parent a0a0e391cb
commit 02be463fd7
10 changed files with 202 additions and 45 deletions

View file

@ -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
}