github.com/gondor/docker@v1.9.0-rc1/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 -l, --latest=false Show the latest network created 18 -n=-1 Show n last created networks 19 --no-trunc=false Do not truncate the output 20 -q, --quiet=false Only display numeric IDs 21 22 Lists all the networks Docker knows about. This include the networks that spans across multiple hosts in a cluster. 23 24 Example output: 25 26 ``` 27 $ sudo docker network ls 28 NETWORK ID NAME DRIVER 29 7fca4eb8c647 bridge bridge 30 9f904ee27bf5 none null 31 cf03ee007fb4 host host 32 ```