From 6e3d119b34b9a3a8ccb3ac209b8a1b12e1b8aec3 Mon Sep 17 00:00:00 2001 From: Simon Cornet Date: Fri, 3 Oct 2025 16:17:41 +0200 Subject: [PATCH] feat: migrate to the new docker-compose-plugin package --- tasks/install.yaml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/tasks/install.yaml b/tasks/install.yaml index 95da779..4fb185c 100644 --- a/tasks/install.yaml +++ b/tasks/install.yaml @@ -1,5 +1,11 @@ --- +# remove old docker-compose package +- name: "remove docker-compose-plugin" + ansible.builtlin.apt: + name: "docker-compose" + state: "absent" + # install docker - name: "install docker" ansible.builtin.apt: @@ -9,7 +15,7 @@ - "docker.io" - "python3-pip" - "python3-docker" - - "docker-compose" + - "docker-compose-plugin" # nfs client - name: "install nfs"