2015-09-28 18:57:03 -07:00
|
|
|
<!--[metadata]>
|
|
|
|
+++
|
|
|
|
title = "network rm"
|
|
|
|
description = "the network rm command description and usage"
|
2015-09-30 13:11:36 -07:00
|
|
|
keywords = ["network, rm, user-defined"]
|
2015-09-28 18:57:03 -07:00
|
|
|
[menu.main]
|
|
|
|
parent = "smn_cli"
|
|
|
|
+++
|
|
|
|
<![end-metadata]-->
|
|
|
|
|
|
|
|
# network rm
|
|
|
|
|
2016-07-07 20:43:18 +02:00
|
|
|
```markdown
|
2016-07-30 01:41:52 +08:00
|
|
|
Usage: docker network rm NETWORK [NETWORK...]
|
2015-09-28 18:57:03 -07:00
|
|
|
|
2016-07-30 01:41:52 +08:00
|
|
|
Remove one or more networks
|
2015-09-28 18:57:03 -07:00
|
|
|
|
2016-07-07 20:43:18 +02:00
|
|
|
Aliases:
|
|
|
|
rm, remove
|
|
|
|
|
|
|
|
Options:
|
|
|
|
--help Print usage
|
|
|
|
```
|
2015-09-28 18:57:03 -07:00
|
|
|
|
2015-10-30 00:10:20 +08:00
|
|
|
Removes one or more networks by name or identifier. To remove a network,
|
|
|
|
you must first disconnect any containers connected to it.
|
|
|
|
To remove the network named 'my-network':
|
2015-09-28 18:57:03 -07:00
|
|
|
|
2015-10-18 16:47:32 -07:00
|
|
|
```bash
|
2015-09-28 18:57:03 -07:00
|
|
|
$ docker network rm my-network
|
|
|
|
```
|
2015-10-18 16:47:32 -07:00
|
|
|
|
2015-10-30 00:10:20 +08:00
|
|
|
To delete multiple networks in a single `docker network rm` command, provide
|
2016-02-17 11:54:45 +08:00
|
|
|
multiple network names or ids. The following example deletes a network with id
|
2015-10-30 00:10:20 +08:00
|
|
|
`3695c422697f` and a network named `my-network`:
|
|
|
|
|
|
|
|
```bash
|
|
|
|
$ docker network rm 3695c422697f my-network
|
|
|
|
```
|
|
|
|
|
|
|
|
When you specify multiple networks, the command attempts to delete each in turn.
|
|
|
|
If the deletion of one network fails, the command continues to the next on the
|
|
|
|
list and tries to delete that. The command reports success or failure for each
|
|
|
|
deletion.
|
|
|
|
|
2015-10-18 16:47:32 -07:00
|
|
|
## Related information
|
|
|
|
|
|
|
|
* [network disconnect ](network_disconnect.md)
|
|
|
|
* [network connect](network_connect.md)
|
|
|
|
* [network create](network_create.md)
|
|
|
|
* [network ls](network_ls.md)
|
|
|
|
* [network inspect](network_inspect.md)
|
2016-07-26 20:40:17 -07:00
|
|
|
* [Understand Docker container networks](../../userguide/networking/index.md)
|