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
|
|
|
|
2017-10-04 13:03:55 -04:00
|
|
|
<!-- This file is maintained within the docker/cli GitHub
|
2017-07-28 13:28:23 -04:00
|
|
|
repository at https://github.com/docker/cli/. Make all
|
2016-10-19 13:25:45 -04:00
|
|
|
pull requests against that repo. If you see this file in
|
|
|
|
another repository, consider it read-only there, as it will
|
|
|
|
periodically be overwritten by the definitive file. Pull
|
|
|
|
requests which include edits to this file in other repositories
|
|
|
|
will be rejected.
|
|
|
|
-->
|
|
|
|
|
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
|
|
|
|
-v, --volumes Remove the volumes associated with the container
|
|
|
|
```
|
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
|
|
|
|
|
|
|
This will remove the container referenced under the link
|
|
|
|
`/redis`.
|
|
|
|
|
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
|
|
|
|
|
|
|
This will remove 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
|
|
|
|
|
|
|
|
This command will force-remove 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
|
|
|
|
2015-10-08 10:20:06 -04:00
|
|
|
This command will delete all stopped containers. The command
|
|
|
|
`docker ps -a -q` will return all existing container IDs and pass them to
|
2015-06-21 16:41:38 -04:00
|
|
|
the `rm` command which will delete them. Any running containers will not be
|
|
|
|
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
|
|
|
|
|
|
|
This command will remove the container and any volumes associated with it.
|
|
|
|
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
|
|
|
|
$ docker rm -v hello
|
|
|
|
```
|
2016-01-21 21:57:53 -05:00
|
|
|
|
|
|
|
In this example, the volume for `/foo` will remain intact, but the volume for
|
|
|
|
`/bar` will be removed. The same behavior holds for volumes inherited with
|
|
|
|
`--volumes-from`.
|