github.com/AliyunContainerService/cli@v0.0.0-20181009023821-814ced4b30d0/docs/reference/commandline/network.md (about)

     1  ---
     2  title: "network"
     3  description: "The network command description and usage"
     4  keywords: "network"
     5  ---
     6  
     7  <!-- This file is maintained within the docker/cli GitHub
     8       repository at https://github.com/docker/cli/. Make all
     9       pull requests against that repo. If you see this file in
    10       another repository, consider it read-only there, as it will
    11       periodically be overwritten by the definitive file. Pull
    12       requests which include edits to this file in other repositories
    13       will be rejected.
    14  -->
    15  
    16  # network
    17  
    18  ```markdown
    19  Usage:  docker network COMMAND
    20  
    21  Manage networks
    22  
    23  Options:
    24        --help   Print usage
    25  
    26  Commands:
    27    connect     Connect a container to a network
    28    create      Create a network
    29    disconnect  Disconnect a container from a network
    30    inspect     Display detailed information on one or more networks
    31    ls          List networks
    32    prune       Remove all unused networks
    33    rm          Remove one or more networks
    34  
    35  Run 'docker network COMMAND --help' for more information on a command.
    36  ```
    37  
    38  ## Description
    39  
    40  Manage networks. You can use subcommands to create, inspect, list, remove,
    41  prune, connect, and disconnect networks.
    42  
    43  ## Related commands
    44  
    45  * [network create](network_create.md)
    46  * [network inspect](network_inspect.md)
    47  * [network list](network_list.md)
    48  * [network rm](network_rm.md)
    49  * [network prune](network_prune.md)
    50  * [network connect](network_connect.md)
    51  * [network disconnect](network_disconnect.md)