Remove stopped containers on `down`

Signed-off-by: Nicolas De Loof <nicolas.deloof@gmail.com>
This commit is contained in:
Nicolas De Loof 2020-12-07 11:39:21 +01:00
parent e37dd90c22
commit 26fe75a7e3
No known key found for this signature in database
GPG Key ID: 9858809D6F8F6E7E
1 changed files with 2 additions and 0 deletions

View File

@ -502,6 +502,7 @@ func (s *composeService) Down(ctx context.Context, projectName string) error {
func (s *composeService) removeContainers(ctx context.Context, w progress.Writer, eg *errgroup.Group, filter filters.Args) error {
containers, err := s.apiClient.ContainerList(ctx, moby.ContainerListOptions{
Filters: filter,
All: true,
})
if err != nil {
return err
@ -533,6 +534,7 @@ func (s *composeService) projectFromContainerLabels(ctx context.Context, project
Filters: filters.NewArgs(
projectFilter(projectName),
),
All: true,
})
if err != nil {
return nil, err