Docker group

Add docker group to support non-admin access to docker, also add group
to the default user.
This commit is contained in:
2024-01-30 20:39:55 -06:00
parent 17907a159a
commit 91e9c2ac04

View File

@@ -23,12 +23,18 @@
- tmux
- zsh
- name: Add docker group
ansible.builtin.group:
name: group
state: present
- name: Add User
ansible.builtin.user:
name: zware
append: true
groups:
- sudo
- docker
generate_ssh_key: true
ssh_key_type: ed25519
create_home: true