Jelajahi Sumber

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 4 tahun lalu
induk
melakukan
0a5328748a
1 mengubah file dengan 1 tambahan dan 1 penghapusan
  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