feat: migrate to the new docker-compose-plugin package

This commit is contained in:
Simon Cornet 2025-10-03 16:17:41 +02:00
commit 6e3d119b34

View file

@ -1,5 +1,11 @@
--- ---
# remove old docker-compose package
- name: "remove docker-compose-plugin"
ansible.builtlin.apt:
name: "docker-compose"
state: "absent"
# install docker # install docker
- name: "install docker" - name: "install docker"
ansible.builtin.apt: ansible.builtin.apt:
@ -9,7 +15,7 @@
- "docker.io" - "docker.io"
- "python3-pip" - "python3-pip"
- "python3-docker" - "python3-docker"
- "docker-compose" - "docker-compose-plugin"
# nfs client # nfs client
- name: "install nfs" - name: "install nfs"