> On March 29, 2016, 6:01 p.m., Avinash sridharan wrote: > > src/docker/docker.cpp, line 568 > > <https://reviews.apache.org/r/42516/diff/19/?file=1318097#file1318097line568> > > > > Maybe s/ Found .../Found multiple networks specified for this > > container. We can only attach docker containers to a single network/ > > > > We try to avoid variable names in `Error` since it becomes cryptic. > > Also, I guess the limiation is of the `DockerContainerizer` rather than > > `Docker`?
No, the limitation is from Docker. During "run/create" container you can specify only single netwrok. Only this command is supported n the contenerizer as it consume resources. From Docker you can later on call "network connect ..." which allows you to connect the containe to aditional/multiple network. 1) The "connect" command is not supported by the contenerizer 2) The implementation we now reviw is for the "run" command for which docker supports only a single network. - Ezra ----------------------------------------------------------- This is an automatically generated e-mail. To reply, visit: https://reviews.apache.org/r/42516/#review125921 ----------------------------------------------------------- On March 29, 2016, 4:33 p.m., Ezra Silvera wrote: > > ----------------------------------------------------------- > This is an automatically generated e-mail. To reply, visit: > https://reviews.apache.org/r/42516/ > ----------------------------------------------------------- > > (Updated March 29, 2016, 4:33 p.m.) > > > Review request for mesos, Jie Yu and Timothy Chen. > > > Bugs: MESOS-4369 > https://issues.apache.org/jira/browse/MESOS-4369 > > > Repository: mesos > > > Description > ------- > > Signed-off-by: Ezra Silvera <[email protected]> > > > Diffs > ----- > > include/mesos/mesos.proto cb68e2c13409620fa4836c12d877488f4333ace7 > include/mesos/v1/mesos.proto af1dc9e11a26b52cfc348324b8dd796c1f72323f > src/docker/docker.cpp 4d35513cdd9c044d37d876a6db7dd9321ceaca53 > > Diff: https://reviews.apache.org/r/42516/diff/ > > > Testing > ------- > > Using Swarm running on Mesos create a network with "docker network create > --driver=bridge myNetwork" and then create a container on that network: > "docker run --net=myNetwork...." > > > Thanks, > > Ezra Silvera > >
