17 lines
No EOL
312 B
YAML
17 lines
No EOL
312 B
YAML
---
|
|
- name: Update apt cache
|
|
become: yes
|
|
apt:
|
|
update_cache: yes
|
|
|
|
- name: Install necessary packages for Docker installation
|
|
become: yes
|
|
apt:
|
|
name: "{{ item }}"
|
|
state: present
|
|
loop:
|
|
- apt-transport-https
|
|
- ca-certificates
|
|
- curl
|
|
- gnupg-agent
|
|
- software-properties-common |