infrastructure/ansible/roles/intersect-docker/tasks/calibre.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
614 B
YAML

- name: Create calibre directory
file:
path: /opt/calibre
state: directory
owner: "{{ docker_user.name }}"
mode: "{{ docker_compose_directory_mask }}"
become: true
- name: Install calibre compose file
template:
src: files/calibre/docker-compose.yml
dest: /opt/calibre/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 calibre
shell:
chdir: /opt/calibre
cmd: "{{ docker_update_command }}"
when: compose_file.changed