Refactored docker role

This commit is contained in:
2023-12-02 14:41:08 +01:00
parent a850187bf0
commit 0b21168a78
3 changed files with 34 additions and 2 deletions

View File

@@ -0,0 +1,11 @@
- name: install docker
community.general.pacman:
name:
- docker
- docker-compose
state: present
- name: Adding user {{client_username}} to relevant docker usergroup
user: name={{client_username}}
groups=docker
append=yes