Add —all option to compose ls, listing non running projects.

Added e2e tests to stop, start, pause, unpause, ls —all, ps —all

Signed-off-by: Guillaume Tardif <guillaume.tardif@gmail.com>
This commit is contained in:
Guillaume Tardif 2021-02-24 12:06:17 +01:00
parent 844e465a94
commit cba4f140ae
18 changed files with 211 additions and 83 deletions

View file

@ -68,7 +68,7 @@ func (c *composeService) Ps(context.Context, string, compose.PsOptions) ([]compo
return nil, errdefs.ErrNotImplemented
}
func (c *composeService) List(context.Context) ([]compose.Stack, error) {
func (c *composeService) List(context.Context, compose.ListOptions) ([]compose.Stack, error) {
return nil, errdefs.ErrNotImplemented
}