UNPKG

@installdoc/ansible-gas-station

Version:

An Ansible playbook that provisions your network with software from GitHub Awesome lists, developed with disaster recovery in mind ⛽🔥🤤

14 lines (12 loc) 313 B
--- - name: Ensure docker system group exists ansible.windows.win_group: name: docker-users state: present - name: Ensure docker users are added to the docker group. ansible.windows.win_user: name: '{{ item }}' groups: - docker-users groups_action: add loop: '{{ docker_users }}'