1
0
mirror of https://github.com/docker/compose.git synced 2025-04-08 17:05:13 +02:00

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
parent 8f840a55de
commit 53fc6d06f6

@ -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):