current state + english docs

This commit is contained in:
Ansible Servercow
2026-02-20 13:56:27 +01:00
parent 787f438a97
commit ea7d5112d6
46 changed files with 519 additions and 108 deletions

View File

@@ -1,5 +1,7 @@
- name: Run Docker Cleanup (full)
hosts: all
user: tincadmin
become: true
tasks:
- include_role:
name: managed-mailcow

View File

@@ -1,5 +1,7 @@
- name: Clean Docker Images on Host
hosts: all
user: tincadmin
become: true
tasks:
- include_role:
name: docker

View File

@@ -0,0 +1,11 @@
- name: Install Docker on Host
hosts: all
user: tincadmin
become: true
tasks:
- include_role:
name: system
tasks_from: install-docker.yaml
vars:
docker_install_source: "official"