1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00

Merge pull request #29241 from lixiaobing10051267/masterNetworkLs

add SCOPE field content for docker network ls
This commit is contained in:
Akihiro Suda 2016-12-08 19:03:12 +09:00 committed by GitHub
commit a75cb8c014
2 changed files with 6 additions and 6 deletions

View file

@ -40,7 +40,7 @@ NETWORK ID NAME DRIVER SCOPE
7fca4eb8c647 bridge bridge local
9f904ee27bf5 none null local
cf03ee007fb4 host host local
78b03ee04fc4 multi-host overlay local
78b03ee04fc4 multi-host overlay swarm
```
Use the `--no-trunc` option to display the full network id:

View file

@ -19,11 +19,11 @@ networks that span across multiple hosts in a cluster, for example:
```bash
$ docker network ls
NETWORK ID NAME DRIVER
7fca4eb8c647 bridge bridge
9f904ee27bf5 none null
cf03ee007fb4 host host
78b03ee04fc4 multi-host overlay
NETWORK ID NAME DRIVER SCOPE
7fca4eb8c647 bridge bridge local
9f904ee27bf5 none null local
cf03ee007fb4 host host local
78b03ee04fc4 multi-host overlay swarm
```
Use the `--no-trunc` option to display the full network id: