From 4acf0493f23a975be5019112fe8d3e3ab458a30c Mon Sep 17 00:00:00 2001 From: Tobias Manske Date: Mon, 22 Jan 2024 15:28:50 +0100 Subject: [PATCH] fixup! Migrate to docker_compose_v2 --- tasks/build.yml | 2 +- tasks/running.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tasks/build.yml b/tasks/build.yml index 21e1c48..7747fa8 100644 --- a/tasks/build.yml +++ b/tasks/build.yml @@ -8,7 +8,7 @@ state: present restarted: false recreate: smart - build: true + build: "always" remove_orphans: true profiles: docker_profiles when: (compose_files.changed and execute == "smart") or execute == "always" diff --git a/tasks/running.yml b/tasks/running.yml index 5afad05..bd802c9 100644 --- a/tasks/running.yml +++ b/tasks/running.yml @@ -9,7 +9,7 @@ state: present restarted: true recreate: smart - build: false + build: "never" profiles: docker_profiles remove_orphans: true when: (compose_files.changed and execute == "smart") or execute == "always"