Commit 200c020d authored by Dom Sekotill's avatar Dom Sekotill
Browse files

Revert "Merge branch '29-auto-rm-containers' into 'release/0.3.x'"

This reverts commit 9af12dcc, reversing
changes made to 36c9f812.
parent f97b3685
Loading
Loading
Loading
Loading
Loading
+1 −4
Original line number Diff line number Diff line
@@ -341,10 +341,7 @@ class Container(Item):
		else:
			opts.append(b"--network=none")

		self.cid = docker_output(
			b"container", b"create", "--rm",
			*opts, self.image.iid, *self.cmd,
		)
		self.cid = docker_output(b"container", b"create", *opts, self.image.iid, *self.cmd)
		assert self.cid

		# Disconnect the "none" network specified as the starting network