mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-02-01 19:42:38 +00:00
26 lines
464 B
Plaintext
26 lines
464 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, common]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# docker rm
|
|
|
|
> Remove 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 --help`
|