forked from data.coop/ansible
Fix mount point for Watchtower
The auth file created by the registry login task doesn't need to be stored in a non-default path.
This commit is contained in:
parent
a4a06d8a58
commit
5d26e1cdea
|
@ -28,9 +28,8 @@
|
||||||
args:
|
args:
|
||||||
creates: "{{ docker_registry.volume_folder }}/auth/htpasswd"
|
creates: "{{ docker_registry.volume_folder }}/auth/htpasswd"
|
||||||
|
|
||||||
- name: log in to local registry
|
- name: log in to registry
|
||||||
docker_login:
|
docker_login:
|
||||||
registry: "{{ docker_registry.domain }}"
|
registry: "{{ docker_registry.domain }}"
|
||||||
username: "docker"
|
username: "docker"
|
||||||
password: "{{ docker_password }}"
|
password: "{{ docker_password }}"
|
||||||
config_path: "{{ docker_registry.volume_folder }}/auth/config.json"
|
|
||||||
|
|
|
@ -9,5 +9,5 @@
|
||||||
networks:
|
networks:
|
||||||
- name: external_services
|
- name: external_services
|
||||||
volumes:
|
volumes:
|
||||||
- /var/run/docker.sock:/var/run/docker.sock
|
- "/var/run/docker.sock:/var/run/docker.sock"
|
||||||
- "{{ docker_registry.volume_folder }}/auth/config.json:/config.json"
|
- "/root/.docker/config.json:/config.json:ro"
|
||||||
|
|
Loading…
Reference in a new issue