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"