man/docker-network-rm.1.md
d5364c71
 % DOCKER(1) Docker User Manuals
 % Docker Community
 % OCT 2015
 # NAME
e7eb6687
 docker-network-rm - remove one or more networks
d5364c71
 
 # SYNOPSIS
e7eb6687
 **docker network rm** 
d5364c71
 [**--help**]
e7eb6687
 NETWORK [NETWORK...]
d5364c71
 
 # DESCRIPTION
 
e7eb6687
 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':
d5364c71
 
e7eb6687
 ```bash
d5364c71
   $ docker network rm my-network
 ```
 
e7eb6687
 To delete multiple networks in a single `docker network rm` command, provide
877e6d76
 multiple network names or ids. The following example deletes a network with id
e7eb6687
 `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.
 
d5364c71
 # OPTIONS
 **NETWORK**
e7eb6687
   Specify network name or id
d5364c71
 
 **--help**
   Print usage statement
 
 # HISTORY
 OCT 2015, created by Mary Anthony <mary@docker.com>