Add existing project files to Git

This commit is contained in:
2023-10-23 16:21:40 +02:00
commit 53b71b5931
9 changed files with 114 additions and 0 deletions

14
tasks/main.yml Normal file
View File

@@ -0,0 +1,14 @@
---
# 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