YoLo perfect...
This commit is contained in:
parent
297a4b7dae
commit
885d634904
1 changed files with 15 additions and 1 deletions
16
docker.yml
16
docker.yml
|
@ -6,4 +6,18 @@
|
||||||
- name: Add specified repository into sources list
|
- name: Add specified repository into sources list
|
||||||
ansible.builtin.apt_repository:
|
ansible.builtin.apt_repository:
|
||||||
repo: "deb [arch=amd64 signed-by=/usr/share/keyrings/docker-archive-keyring.gpg] https://download.docker.com/linux/debian buster stable"
|
repo: "deb [arch=amd64 signed-by=/usr/share/keyrings/docker-archive-keyring.gpg] https://download.docker.com/linux/debian buster stable"
|
||||||
state: present
|
state: present
|
||||||
|
|
||||||
|
|
||||||
|
- name: Update repositories cache and install "docker-ce" package
|
||||||
|
apt:
|
||||||
|
name: docker-ce
|
||||||
|
update_cache: yes
|
||||||
|
|
||||||
|
- name: Update repositories cache and install "docker-ce" package
|
||||||
|
apt:
|
||||||
|
name: docker-ce-cli
|
||||||
|
|
||||||
|
- name: Update repositories cache and install "docker-ce" package
|
||||||
|
apt:
|
||||||
|
name: containerd.io
|
||||||
|
|
Reference in a new issue