From 96023909247d1566ae510307a52cd4caedd5a981 Mon Sep 17 00:00:00 2001 From: felixfontein Date: Fri, 20 Jan 2023 12:26:37 +0000 Subject: [PATCH] deploy: c24ea78f6ef57e8eb97f97f5459159e6f78eb353 --- branch/main/docker_compose_module.html | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/branch/main/docker_compose_module.html b/branch/main/docker_compose_module.html index 43fb232b..9819fe32 100644 --- a/branch/main/docker_compose_module.html +++ b/branch/main/docker_compose_module.html @@ -667,8 +667,8 @@ see - ansible.builtin.assert: that: - - "not web.flask_web_1.state.running" - - "not db.flask_db_1.state.running" + - "not output.services.web.flask_web_1.state.running" + - "not output.services.db.flask_db_1.state.running" - name: Restart services community.docker.docker_compose: @@ -682,8 +682,8 @@ see - ansible.builtin.assert: that: - - "web.flask_web_1.state.running" - - "db.flask_db_1.state.running" + - "output.services.web.flask_web_1.state.running" + - "output.services.db.flask_db_1.state.running" - name: Scale the web service to 2 hosts: localhost @@ -730,8 +730,8 @@ see - ansible.builtin.assert: that: - - "web.flask_web_1.state.running" - - "db.flask_db_1.state.running" + - "output.services.web.flask_web_1.state.running" + - "output.services.db.flask_db_1.state.running" - name: Run with inline Compose file version 1 # https://docs.docker.com/compose/compose-file/compose-file-v1/ @@ -763,8 +763,8 @@ see - ansible.builtin.assert: that: - - "web.flask_web_1.state.running" - - "db.flask_db_1.state.running" + - "output.services.web.flask_web_1.state.running" + - "output.services.db.flask_db_1.state.running"