public-health-ch/ansible/roles/geerlingguy.docker/tasks/docker-users.yml

8 lines
165 B
YAML
Raw Normal View History

2020-05-15 20:41:39 +00:00
---
- name: Ensure docker users are added to the docker group.
user:
name: "{{ item }}"
groups: docker
append: true
with_items: "{{ docker_users }}"