mirror of https://github.com/docker/compose.git
docker-compose pull SERVICE should not pull SERVICE's dependencies
Signed-off-by: Cameron Eagans <me@cweagans.net>
This commit is contained in:
parent
46de4411a7
commit
6048630a11
|
@ -335,7 +335,7 @@ class Project(object):
|
||||||
return plans
|
return plans
|
||||||
|
|
||||||
def pull(self, service_names=None, ignore_pull_failures=False):
|
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)
|
service.pull(ignore_pull_failures)
|
||||||
|
|
||||||
def containers(self, service_names=None, stopped=False, one_off=False):
|
def containers(self, service_names=None, stopped=False, one_off=False):
|
||||||
|
|
Loading…
Reference in New Issue