This repository has been archived on 2024-02-10. You can view files and clone it, but cannot push or open issues or pull requests.
cpx-ansible/roles/docker_services/tasks/config.yml

13 lines
280 B
YAML

# vim: ft=yaml.ansible
---
- name: Copy Docker daemon config file
ansible.builtin.copy:
src: dockerd/daemon.json
dest: /etc/docker/daemon.json
owner: root
mode: u=rw,g=r,o=r
notify: reload-dockerd
- name: Flush handlers
ansible.builtin.meta: flush_handlers