From 3b41e7d6a836aa37558ffa420c8f5cb60f9ae959 Mon Sep 17 00:00:00 2001 From: Felix Fontein Date: Thu, 8 Sep 2022 06:33:06 +0200 Subject: [PATCH] Improve docker_compose example (#470) * Improve compose docs. * Also adjust inline v1 example. --- plugins/modules/docker_compose.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/plugins/modules/docker_compose.py b/plugins/modules/docker_compose.py index 824aef2c..ac702af7 100644 --- a/plugins/modules/docker_compose.py +++ b/plugins/modules/docker_compose.py @@ -260,7 +260,8 @@ EXAMPLES = ''' - ansible.builtin.debug: var: output -- name: Run with inline v2 compose +- name: Run with inline Compose file version 2 + # https://docs.docker.com/compose/compose-file/compose-file-v2/ hosts: localhost gather_facts: false tasks: @@ -294,7 +295,8 @@ EXAMPLES = ''' - "web.flask_web_1.state.running" - "db.flask_db_1.state.running" -- name: Run with inline v1 compose +- name: Run with inline Compose file version 1 + # https://docs.docker.com/compose/compose-file/compose-file-v1/ hosts: localhost gather_facts: false tasks: