Rename return of docker_compose. (#54171)

This commit is contained in:
Felix Fontein 2019-03-23 19:35:11 +01:00 committed by John R Barker
parent bcbcd209f4
commit 752db43b2d
3 changed files with 8 additions and 7 deletions

View file

@ -302,7 +302,7 @@ EXAMPLES = '''
'''
RETURN = '''
service_facts:
services:
description:
- A dictionary mapping the service's name to a dictionary of containers.
- Note that facts are part of the registered vars since Ansible 2.8. For compatibility reasons, the facts
@ -686,7 +686,7 @@ class ContainerManager(DockerBaseClass):
start_deps = self.dependencies
service_names = self.services
detached = True
result = dict(changed=False, actions=[], ansible_facts=dict(), service_facts=dict())
result = dict(changed=False, actions=[], ansible_facts=dict(), services=dict())
up_options = {
u'--no-recreate': False,
@ -772,7 +772,7 @@ class ContainerManager(DockerBaseClass):
for service in self.project.services:
service_facts = dict()
result['ansible_facts'][service.name] = service_facts
result['service_facts'][service.name] = service_facts
result['services'][service.name] = service_facts
for container in service.containers(stopped=True):
inspection = container.inspect()
# pare down the inspection data to the most useful bits