2016-10-14 18:30:36 -04:00
|
|
|
---
|
|
|
|
title: "rm"
|
|
|
|
description: "The rm command description and usage"
|
2016-11-03 18:48:30 -04:00
|
|
|
keywords: "remove, Docker, container"
|
2016-10-14 18:30:36 -04:00
|
|
|
---
|
2015-06-21 16:41:38 -04:00
|
|
|
|
|
|
|
# rm
|
|
|
|
|
2016-07-07 14:43:18 -04:00
|
|
|
```markdown
|
|
|
|
Usage: docker rm [OPTIONS] CONTAINER [CONTAINER...]
|
2015-06-21 16:41:38 -04:00
|
|
|
|
2016-07-07 14:43:18 -04:00
|
|
|
Remove one or more containers
|
2015-06-21 16:41:38 -04:00
|
|
|
|
2016-07-07 14:43:18 -04:00
|
|
|
Options:
|
|
|
|
-f, --force Force the removal of a running container (uses SIGKILL)
|
|
|
|
--help Print usage
|
|
|
|
-l, --link Remove the specified link
|
2020-01-25 07:54:23 -05:00
|
|
|
-v, --volumes Remove anonymous volumes associated with the container
|
2016-07-07 14:43:18 -04:00
|
|
|
```
|
2015-06-21 16:41:38 -04:00
|
|
|
|
|
|
|
## Examples
|
|
|
|
|
2017-02-07 18:42:48 -05:00
|
|
|
### Remove a container
|
2015-06-21 16:41:38 -04:00
|
|
|
|
2020-04-19 09:43:08 -04:00
|
|
|
This removes the container referenced under the link `/redis`.
|
2015-06-21 16:41:38 -04:00
|
|
|
|
2017-02-07 18:42:48 -05:00
|
|
|
```bash
|
|
|
|
$ docker rm /redis
|
|
|
|
|
|
|
|
/redis
|
|
|
|
```
|
|
|
|
|
|
|
|
### Remove a link specified with `--link` on the default bridge network
|
2015-06-21 16:41:38 -04:00
|
|
|
|
2020-04-19 09:43:08 -04:00
|
|
|
This removes the underlying link between `/webapp` and the `/redis`
|
2017-02-07 18:42:48 -05:00
|
|
|
containers on the default bridge network, removing all network communication
|
|
|
|
between the two containers. This does not apply when `--link` is used with
|
|
|
|
user-specified networks.
|
|
|
|
|
|
|
|
```bash
|
|
|
|
$ docker rm --link /webapp/redis
|
|
|
|
|
|
|
|
/webapp/redis
|
|
|
|
```
|
|
|
|
|
|
|
|
### Force-remove a running container
|
|
|
|
|
2020-04-19 09:43:08 -04:00
|
|
|
This command force-removes a running container.
|
2015-06-21 16:41:38 -04:00
|
|
|
|
2017-02-07 18:42:48 -05:00
|
|
|
```bash
|
|
|
|
$ docker rm --force redis
|
2015-06-21 16:41:38 -04:00
|
|
|
|
2017-02-07 18:42:48 -05:00
|
|
|
redis
|
|
|
|
```
|
|
|
|
|
|
|
|
The main process inside the container referenced under the link `redis` will receive
|
2015-06-21 16:41:38 -04:00
|
|
|
`SIGKILL`, then the container will be removed.
|
|
|
|
|
2017-02-07 18:42:48 -05:00
|
|
|
### Remove all stopped containers
|
|
|
|
|
|
|
|
```bash
|
|
|
|
$ docker rm $(docker ps -a -q)
|
|
|
|
```
|
2015-06-21 16:41:38 -04:00
|
|
|
|
2020-04-19 09:43:08 -04:00
|
|
|
This command deletes all stopped containers. The command
|
|
|
|
`docker ps -a -q` above returns all existing container IDs and passes them to
|
|
|
|
the `rm` command which deletes them. Running containers are not deleted.
|
2016-01-21 21:57:53 -05:00
|
|
|
|
2017-02-07 18:42:48 -05:00
|
|
|
### Remove a container and its volumes
|
|
|
|
|
|
|
|
```bash
|
|
|
|
$ docker rm -v redis
|
|
|
|
redis
|
|
|
|
```
|
2016-01-21 21:57:53 -05:00
|
|
|
|
2020-04-19 09:43:08 -04:00
|
|
|
This command removes the container and any volumes associated with it.
|
2016-01-21 21:57:53 -05:00
|
|
|
Note that if a volume was specified with a name, it will not be removed.
|
|
|
|
|
2017-02-07 18:42:48 -05:00
|
|
|
### Remove a container and selectively remove volumes
|
|
|
|
|
|
|
|
```bash
|
|
|
|
$ docker create -v awesome:/foo -v /bar --name hello redis
|
|
|
|
hello
|
2020-04-19 09:43:08 -04:00
|
|
|
|
2017-02-07 18:42:48 -05:00
|
|
|
$ docker rm -v hello
|
|
|
|
```
|
2016-01-21 21:57:53 -05:00
|
|
|
|
2020-04-19 09:43:08 -04:00
|
|
|
In this example, the volume for `/foo` remains intact, but the volume for
|
|
|
|
`/bar` is removed. The same behavior holds for volumes inherited with
|
2016-01-21 21:57:53 -05:00
|
|
|
`--volumes-from`.
|