This commit is contained in:
Kekskurse 2023-07-21 02:56:16 +02:00
parent f7a1e0c503
commit 4b4bb484e7
Signed by: kekskurse
GPG Key ID: 728ACCB59341E7E4
1 changed files with 2 additions and 2 deletions

View File

@ -9,10 +9,11 @@
- ca-certificates
- curl
- gnupg
- name: Add an Apt signing key, uses whichever key is at the URL
ansible.builtin.apt_key:
url: https://download.docker.com/linux/debian/gpg
state: present
state: absent
- name: Download /etc/apt/keyrings/docker.gpg
ansible.builtin.get_url:
@ -20,7 +21,6 @@
dest: /etc/apt/keyrings/docker.gpg
mode: '0440'
- name: Add docker repository
ansible.builtin.apt_repository:
repo: "deb [arch=amd64 signed-by=/etc/apt/keyrings/docker.gpg] https://download.docker.com/linux/debian {{ ansible_distribution_release }} stable"