15 lines
241 B
YAML
15 lines
241 B
YAML
---
|
|
# tasks file for haup.docker
|
|
|
|
- name: Update apt cache
|
|
ansible.builtin.apt:
|
|
update_cache: True
|
|
|
|
- name: Install docker.io
|
|
ansible.builtin.apt:
|
|
name: "{{ item }}"
|
|
loop:
|
|
- docker.io
|
|
- docker-compose
|
|
- containerd
|