mirror of https://github.com/docker/compose.git
Remove intermediate build containers
Docker does this by default now.
This commit is contained in:
parent
98ceb62202
commit
7a9228ad75
|
@ -305,7 +305,8 @@ class Service(object):
|
||||||
build_output = self.client.build(
|
build_output = self.client.build(
|
||||||
self.options['build'],
|
self.options['build'],
|
||||||
tag=self._build_tag_name(),
|
tag=self._build_tag_name(),
|
||||||
stream=True
|
stream=True,
|
||||||
|
rm=True
|
||||||
)
|
)
|
||||||
|
|
||||||
try:
|
try:
|
||||||
|
|
Loading…
Reference in New Issue