mirror of https://github.com/docker/compose.git
Merge pull request #2199 from cweagans/1752-docker-compose-pull-service-nodeps
docker-compose pull SERVICE should not pull SERVICE's dependencies
This commit is contained in:
commit
4b939d3560
|
@ -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):
|
||||
|
|
Loading…
Reference in New Issue