diff --git a/pkg/gui/containers_panel.go b/pkg/gui/containers_panel.go index 92aa95b37..7411c8f6b 100644 --- a/pkg/gui/containers_panel.go +++ b/pkg/gui/containers_panel.go @@ -330,6 +330,10 @@ func (gui *Gui) handleContainersRemoveMenu(g *gocui.Gui, v *gocui.View) error { LabelColumns: []string{gui.Tr.Remove, "docker rm " + ctr.ID[1:10]}, OnPress: func() error { return handleMenuPress(container.RemoveOptions{}) }, }, + { + LabelColumns: []string{gui.Tr.RemoveWithForce, "docker rm --force " + ctr.ID[1:10]}, + OnPress: func() error { return handleMenuPress(container.RemoveOptions{Force: true}) }, + }, { LabelColumns: []string{gui.Tr.RemoveWithVolumes, "docker rm --volumes " + ctr.ID[1:10]}, OnPress: func() error { return handleMenuPress(container.RemoveOptions{RemoveVolumes: true}) },