github.com/netbrain/docker@v1.9.0-rc2/docs/reference/commandline/network_ls.md (about)

     1  <!--[metadata]>
     2  +++
     3  title = "network ls"
     4  description = "The network ls command description and usage"
     5  keywords = ["network, list"]
     6  [menu.main]
     7  parent = "smn_cli"
     8  +++
     9  <![end-metadata]-->
    10  
    11  # docker network ls
    12  
    13      Usage:  docker network ls [OPTIONS]
    14  
    15      Lists all the networks created by the user
    16        --help=false          Print usage
    17        --no-trunc=false      Do not truncate the output
    18        -q, --quiet=false     Only display numeric IDs
    19  
    20  Lists all the networks Docker knows about. This include the networks that spans across multiple hosts in a cluster.
    21  
    22  Example output:
    23  
    24  ```
    25      $ sudo docker network ls
    26      NETWORK ID          NAME                DRIVER
    27      7fca4eb8c647        bridge              bridge
    28      9f904ee27bf5        none                null
    29      cf03ee007fb4        host                host
    30  ```