feat: install docker and start hello world container
Some checks failed
Provision & Configure / Terraform Apply (push) Has been cancelled

This commit is contained in:
Ditmar Visser
2025-06-05 20:26:02 +00:00
parent f8e401eefe
commit 24e3313331
4 changed files with 28 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
- name: Installeer Docker
ansible.builtin.apt:
name: docker.io
state: present
update_cache: true
- name: Start en enable Docker service
ansible.builtin.service:
name: docker
state: started
enabled: true