docker
This commit is contained in:
parent
e71faa747c
commit
f7a1e0c503
1 changed files with 6 additions and 1 deletions
|
@ -12,9 +12,14 @@
|
||||||
- name: Add an Apt signing key, uses whichever key is at the URL
|
- name: Add an Apt signing key, uses whichever key is at the URL
|
||||||
ansible.builtin.apt_key:
|
ansible.builtin.apt_key:
|
||||||
url: https://download.docker.com/linux/debian/gpg
|
url: https://download.docker.com/linux/debian/gpg
|
||||||
dest: /etc/apt/keyrings/docker.gpg
|
|
||||||
state: present
|
state: present
|
||||||
|
|
||||||
|
- name: Download /etc/apt/keyrings/docker.gpg
|
||||||
|
ansible.builtin.get_url:
|
||||||
|
url: https://download.docker.com/linux/debian/gpg
|
||||||
|
dest: /etc/apt/keyrings/docker.gpg
|
||||||
|
mode: '0440'
|
||||||
|
|
||||||
|
|
||||||
- name: Add docker repository
|
- name: Add docker repository
|
||||||
ansible.builtin.apt_repository:
|
ansible.builtin.apt_repository:
|
||||||
|
|
Loading…
Reference in a new issue