mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
b464f1d78c
docker's network disconnect api now supports `Force` option which can be used to force cleanup an endpoint from any host in the cluster. Signed-off-by: Madhu Venugopal <madhu@docker.com>
36 lines
603 B
Markdown
36 lines
603 B
Markdown
% DOCKER(1) Docker User Manuals
|
|
% Docker Community
|
|
% OCT 2015
|
|
# NAME
|
|
docker-network-disconnect - disconnect a container from a network
|
|
|
|
# SYNOPSIS
|
|
**docker network disconnect**
|
|
[**--help**]
|
|
[**--force**]
|
|
NETWORK CONTAINER
|
|
|
|
# DESCRIPTION
|
|
|
|
Disconnects a container from a network.
|
|
|
|
```bash
|
|
$ docker network disconnect multi-host-network container1
|
|
```
|
|
|
|
|
|
# OPTIONS
|
|
**NETWORK**
|
|
Specify network name
|
|
|
|
**CONTAINER**
|
|
Specify container name
|
|
|
|
**--force**
|
|
Force the container to disconnect from a network
|
|
|
|
**--help**
|
|
Print usage statement
|
|
|
|
# HISTORY
|
|
OCT 2015, created by Mary Anthony <mary@docker.com>
|