Loading behave_utils/docker.py +5 −1 Original line number Diff line number Diff line Loading @@ -341,7 +341,11 @@ class Container(Item): else: opts.append(b"--network=none") self.cid = docker_output(b"container", b"create", *opts, self.image.iid, *self.cmd) self.cid = docker_output( b"container", b"create", "--label", "uk.org.kodo.behave-utils", *opts, self.image.iid, *self.cmd, ) assert self.cid # Disconnect the "none" network specified as the starting network Loading Loading
behave_utils/docker.py +5 −1 Original line number Diff line number Diff line Loading @@ -341,7 +341,11 @@ class Container(Item): else: opts.append(b"--network=none") self.cid = docker_output(b"container", b"create", *opts, self.image.iid, *self.cmd) self.cid = docker_output( b"container", b"create", "--label", "uk.org.kodo.behave-utils", *opts, self.image.iid, *self.cmd, ) assert self.cid # Disconnect the "none" network specified as the starting network Loading