Fix permissions for docker.sock

This commit is contained in:
Filipe Marcelino 2024-09-02 02:12:50 +01:00
parent af332bec14
commit 02d250c4a5

View File

@ -64,3 +64,8 @@
filename: "{{ docker_apt_filename }}"
update_cache: true
when: docker_add_repo | bool
- name: Set `/var/run/docker.sock` right permissions
ansible.builtin.file:
path: /var/run/docker.sock
mode: '0666'