Skip to content

Instantly share code, notes, and snippets.

@nleiva
Created July 1, 2021 14:50
Show Gist options
  • Save nleiva/95c8085fe79bc0f06ac8260f60204be7 to your computer and use it in GitHub Desktop.
Save nleiva/95c8085fe79bc0f06ac8260f60204be7 to your computer and use it in GitHub Desktop.
- name: Ensure group "docker" exists
ansible.builtin.group:
name: docker
state: present
- name: Append user {{ ansible_user }} to the group 'docker'
ansible.builtin.user:
name: "{{ ansible_user }}"
groups: docker
append: yes
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment