mirror of https://github.com/docker/docs.git
Merge pull request #2761 from aanand/fix-bridge-plus-host
Remove ability to join bridge network + user-defined networks
This commit is contained in:
commit
ca81672b82
|
@ -470,9 +470,6 @@ def get_networks(service_dict, network_definitions):
|
||||||
|
|
||||||
networks = []
|
networks = []
|
||||||
for name in service_dict.pop('networks', ['default']):
|
for name in service_dict.pop('networks', ['default']):
|
||||||
if name in ['bridge']:
|
|
||||||
networks.append(name)
|
|
||||||
else:
|
|
||||||
matches = [n for n in network_definitions if n.name == name]
|
matches = [n for n in network_definitions if n.name == name]
|
||||||
if matches:
|
if matches:
|
||||||
networks.append(matches[0].full_name)
|
networks.append(matches[0].full_name)
|
||||||
|
|
|
@ -472,11 +472,6 @@ Networks to join, referencing entries under the
|
||||||
- some-network
|
- some-network
|
||||||
- other-network
|
- other-network
|
||||||
|
|
||||||
The value `bridge` can also be used to make containers join the pre-defined
|
|
||||||
`bridge` network.
|
|
||||||
|
|
||||||
There is no equivalent to `net: "container:[name or id]"`.
|
|
||||||
|
|
||||||
### pid
|
### pid
|
||||||
|
|
||||||
pid: "host"
|
pid: "host"
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
PyYAML==3.11
|
PyYAML==3.11
|
||||||
cached-property==1.2.0
|
cached-property==1.2.0
|
||||||
docker-py==1.7.0rc2
|
docker-py==1.7.0rc3
|
||||||
docopt==0.6.1
|
docopt==0.6.1
|
||||||
enum34==1.0.4
|
enum34==1.0.4
|
||||||
git+https://github.com/d11wtq/dockerpty.git@29b1394108b017ef3e3deaf00604a9eb99880d5e#egg=dockerpty
|
git+https://github.com/d11wtq/dockerpty.git@29b1394108b017ef3e3deaf00604a9eb99880d5e#egg=dockerpty
|
||||||
|
|
|
@ -495,22 +495,6 @@ class CLITestCase(DockerClientTestCase):
|
||||||
|
|
||||||
assert 'Service "web" uses an undefined network "foo"' in result.stderr
|
assert 'Service "web" uses an undefined network "foo"' in result.stderr
|
||||||
|
|
||||||
@v2_only()
|
|
||||||
def test_up_with_bridge_network_plus_default(self):
|
|
||||||
filename = 'bridge.yml'
|
|
||||||
|
|
||||||
self.base_dir = 'tests/fixtures/networks'
|
|
||||||
self._project = get_project(self.base_dir, [filename])
|
|
||||||
|
|
||||||
self.dispatch(['-f', filename, 'up', '-d'], None)
|
|
||||||
|
|
||||||
container = self.project.containers()[0]
|
|
||||||
|
|
||||||
assert sorted(list(container.get('NetworkSettings.Networks'))) == sorted([
|
|
||||||
'bridge',
|
|
||||||
self.project.default_network.full_name,
|
|
||||||
])
|
|
||||||
|
|
||||||
@v2_only()
|
@v2_only()
|
||||||
def test_up_with_network_mode(self):
|
def test_up_with_network_mode(self):
|
||||||
c = self.client.create_container('busybox', 'top', name='composetest_network_mode_container')
|
c = self.client.create_container('busybox', 'top', name='composetest_network_mode_container')
|
||||||
|
|
Loading…
Reference in New Issue