docker-rm

Remove one or more containers. More information: <https://docs.docker.com/engine/reference/commandline/rm>.

Install

All systems
curl cmd.cat/docker-rm.sh
OS X
brew install docker-ls

Remove one or more containers. More information: <https://docs.docker.com/engine/reference/commandline/rm>.

  • Remove containers:
    docker rm container1 container2 ...
  • Force remove a container:
    docker rm --force container1 container2 ...
  • Remove a container and its volumes:
    docker rm --volumes container
  • Display help:
    docker rm

© tl;dr; authors and contributors