| Summary: | docker inspect non-camel-case JSON key: NetworkSettings.Networks.bridge | ||
|---|---|---|---|
| Product: | Red Hat Enterprise Linux 7 | Reporter: | Chris Evich <cevich> |
| Component: | docker | Assignee: | Daniel Walsh <dwalsh> |
| Status: | CLOSED NOTABUG | QA Contact: | atomic-bugs <atomic-bugs> |
| Severity: | medium | Docs Contact: | |
| Priority: | unspecified | ||
| Version: | 7.2 | CC: | lsm5, mpatel |
| Target Milestone: | rc | ||
| Target Release: | --- | ||
| Hardware: | x86_64 | ||
| OS: | Linux | ||
| Whiteboard: | docker-autotest:0.8.5:docker_cli/dockerinspect/inspect_keys | ||
| Fixed In Version: | Doc Type: | Bug Fix | |
| Doc Text: | Story Points: | --- | |
| Clone Of: | Environment: | ||
| Last Closed: | 2016-03-30 14:38:28 UTC | Type: | Bug |
| Regression: | --- | Mount Type: | --- |
| Documentation: | --- | CRM: | |
| Verified Versions: | Category: | --- | |
| oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |
| Cloudforms Team: | --- | Target Upstream Version: | |
|
Description
Chris Evich
2016-03-30 14:21:29 UTC
I don't see this as a bug. "bridge" is the name of the network. It could just as easily been called "foobar".
man docker run
...
--net="bridge"
Set the Network mode for the container
'bridge': create a network stack on the
default Docker bridge
'none': no networking
'container:<name|id>': reuse another
container's network stack
'host': use the Docker host network
stack. Note: the host mode gives the container full access to local
system services such as D-bus and is therefore considered insecure.
'<network-name>|<network-id>': connect
to a user-defined network
(In reply to Daniel Walsh from comment #2) > I don't see this as a bug. "bridge" is the name of the network. It could > just as easily been called "foobar". Oh ok, so it's more of a 'data' key as opposed structural. Fair enough, I'll add an exception to checking this in CI. |