docker-compose pull SERVICE should not pull SERVICE's dependencies

Signed-off-by: Cameron Eagans <me@cweagans.net>
This commit is contained in:
Cameron Eagans 2015-10-15 16:58:27 -06:00 committed by Daniel Nephin
parent 46de4411a7
commit 6048630a11
1 changed files with 1 additions and 1 deletions

View File

@ -335,7 +335,7 @@ class Project(object):
return plans
def pull(self, service_names=None, ignore_pull_failures=False):
for service in self.get_services(service_names, include_deps=True):
for service in self.get_services(service_names, include_deps=False):
service.pull(ignore_pull_failures)
def containers(self, service_names=None, stopped=False, one_off=False):