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

Merge pull request #26413 from lixiaobing10051267/masterLabel

Labels info ommitted while inspecting self-defined network
This commit is contained in:
Sebastiaan van Stijn 2016-09-22 02:07:53 +02:00 committed by GitHub
commit c5f4a1ab19
4 changed files with 26 additions and 13 deletions

View file

@ -80,7 +80,8 @@ $ sudo docker network inspect bridge
"com.docker.network.bridge.host_binding_ipv4": "0.0.0.0",
"com.docker.network.bridge.name": "docker0",
"com.docker.network.driver.mtu": "1500"
}
},
"Labels": {}
}
]
```
@ -107,7 +108,8 @@ $ docker network inspect simple-network
]
},
"Containers": {},
"Options": {}
"Options": {},
"Labels": {}
}
]
```

View file

@ -141,7 +141,8 @@ $ docker network inspect bridge
"com.docker.network.bridge.host_binding_ipv4": "0.0.0.0",
"com.docker.network.bridge.name": "docker0",
"com.docker.network.driver.mtu": "9001"
}
},
"Labels": {}
}
]
```
@ -188,7 +189,8 @@ If you inspect the network, you'll find that it has nothing in it.
]
},
"Containers": {},
"Options": {}
"Options": {},
"Labels": {}
}
]

View file

@ -125,7 +125,8 @@ $ docker network inspect bridge
"com.docker.network.bridge.host_binding_ipv4": "0.0.0.0",
"com.docker.network.bridge.name": "docker0",
"com.docker.network.driver.mtu": "9001"
}
},
"Labels": {}
}
]
```
@ -183,7 +184,8 @@ $ docker network inspect bridge
"com.docker.network.bridge.host_binding_ipv4": "0.0.0.0",
"com.docker.network.bridge.name": "docker0",
"com.docker.network.driver.mtu": "9001"
}
},
"Labels": {}
}
]
```
@ -336,7 +338,8 @@ $ docker network inspect isolated_nw
]
},
"Containers": {},
"Options": {}
"Options": {},
"Labels": {}
}
]
@ -378,7 +381,8 @@ $ docker network inspect isolated_nw
"IPv6Address": ""
}
},
"Options": {}
"Options": {},
"Labels": {}
}
]
```

View file

@ -62,7 +62,8 @@ $ docker network inspect simple-network
]
},
"Containers": {},
"Options": {}
"Options": {},
"Labels": {}
}
]
```
@ -160,7 +161,8 @@ $ docker network inspect my-network
"Containers": {},
"Options": {
"com.docker.network.bridge.host_binding_ipv4": "172.23.0.1"
}
},
"Labels": {}
}
]
@ -236,7 +238,8 @@ $ docker network inspect isolated_nw
"IPv6Address": ""
}
},
"Options": {}
"Options": {},
"Labels": {}
}
]
```
@ -797,7 +800,8 @@ $ docker network inspect isolated_nw
"IPv6Address": ""
}
},
"Options": {}
"Options": {},
"Labels": {}
}
]
```
@ -900,7 +904,8 @@ $ docker network inspect isolated_nw
]
},
"Containers": {},
"Options": {}
"Options": {},
"Labels": {}
}
]