Explorar o código

When running compose down, remove containers with Force=true in case some container is still up for any reason (happened in some E2E test once)

Signed-off-by: Guillaume Tardif <[email protected]>
Guillaume Tardif %!s(int64=4) %!d(string=hai) anos
pai
achega
0a5328748a
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      local/compose/down.go

+ 1 - 1
local/compose/down.go

@@ -101,7 +101,7 @@ func (s *composeService) removeContainers(ctx context.Context, w progress.Writer
 				return err
 			}
 			w.Event(progress.RemovingEvent(eventName))
-			err = s.apiClient.ContainerRemove(ctx, toDelete.ID, moby.ContainerRemoveOptions{})
+			err = s.apiClient.ContainerRemove(ctx, toDelete.ID, moby.ContainerRemoveOptions{Force: true})
 			if err != nil {
 				w.Event(progress.ErrorMessageEvent(eventName, "Error while Removing"))
 				return err