From 6c7e72fb67d68293a8d0f6c977f147aa3a271baa Mon Sep 17 00:00:00 2001 From: nono Date: Wed, 16 Oct 2024 20:09:20 +0000 Subject: [PATCH] Actualiser tasks/setup-debian.yml --- tasks/setup-debian.yml | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/tasks/setup-debian.yml b/tasks/setup-debian.yml index 125b836..5321b01 100644 --- a/tasks/setup-debian.yml +++ b/tasks/setup-debian.yml @@ -1,6 +1,16 @@ -- -- name: Update all packages to their latest version +- name: Update all packages to their latest version. ansible.builtin.apt: name: "*" state: latest + +- name: Add the Apt signing key. + ansible.builtin.get_url: + url: https://download.docker.com/linux/debian/gpg + dest: /etc/apt/keyrings/docker.asc + +- name: Add docker-ce repo + ansible.builtin.apt_repository: + repo: "deb [arch={{ ansible_architecture }} signed-by=/etc/apt/keyrings/docker.asc] https://download.docker.com/linux/debian {{ ansible_distribution_release }} stable" + state: present \ No newline at end of file