This commit is contained in:
sotos
2025-12-15 08:24:28 +01:00
parent 4e92a6d6f3
commit 05d8ed71f1
26 changed files with 75 additions and 526 deletions

View File

@@ -0,0 +1,22 @@
---
- hosts: all
become: true
tasks:
- name: Install required packages
apt:
name:
- ca-certificates
- curl
update_cache: yes
- name: Install Docker
shell: curl -fsSL https://get.docker.com | sh
args:
creates: /usr/bin/docker
- name: Enable Docker
systemd:
name: docker
enabled: true
state: started