From 401328cc7d0ce660b9d119874944315c841af84e Mon Sep 17 00:00:00 2001 From: pastalian <28638872+pastalian@users.noreply.github.com> Date: Wed, 19 Jun 2024 19:09:06 +0900 Subject: [PATCH] Add missing compatibility flag to compose build (#25) --- roles/dev_deploy/tasks/services.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/dev_deploy/tasks/services.yml b/roles/dev_deploy/tasks/services.yml index bd21d39..3ebee1d 100644 --- a/roles/dev_deploy/tasks/services.yml +++ b/roles/dev_deploy/tasks/services.yml @@ -31,7 +31,7 @@ register: services - name: Create and start each service individually - shell: "{{ docker_compose }} -p {{ container_name_prefix }} up -d --build --force-recreate {{ item }}" + shell: "{{ docker_compose }} -p {{ container_name_prefix }} --compatibility up -d --build --force-recreate {{ item }}" args: chdir: "{{ sources_root }}/albs-web-server" when: item not in excluded_containers