collection of ansible roles
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

10 lines
237 B

- name: create config directory
file:
path: /etc/docker/registry
state: directory
mode: '0755'
- name: deploy registry config
copy:
src: config.yml
dest: /etc/docker/registry/config.yml
notify: restart registry