infrastructure/ansible/roles/intersect-docker/tasks/whoami.yml
Jake Howard 86a398d6b4
Replace docker-compose restart hack with shell handler hack
The docker-compose integration would start 2 of the same container, which does bad things to things like databases!
2020-06-28 20:13:12 +01:00

24 lines
630 B
YAML

- name: Create whoami directory
file:
path: /opt/whoami
state: directory
owner: "{{ docker_user.name }}"
mode: "{{ docker_compose_directory_mask }}"
become: true
- name: Install whoami compose file
template:
src: files/whoami/docker-compose.yml
dest: /opt/whoami/docker-compose.yml
mode: "{{ docker_compose_file_mask }}"
owner: "{{ docker_user.name }}"
validate: /usr/bin/docker-compose -f %s config
register: compose_file
become: true
- name: restart whoami
shell:
chdir: /opt/whoami
cmd: "{{ docker_update_command }}"
when: compose_file.changed or config_file.changed