feat(docker): add ansible role

This commit is contained in:
2025-04-20 19:43:33 +02:00
parent 1024921a74
commit 0771787c98
11 changed files with 155 additions and 0 deletions

View File

@ -0,0 +1,5 @@
---
docker_systemd_service_name: "docker.service"
docker_systemd_service_state: >-2
{{ (docker_state == 'present') | ternary('started', 'stopped') }}
docker_systemd_service_enabled: "{{ (docker_state == 'present') }}"