infrastructure/ansible/roles/intersect-docker/tasks/todoist-github.yml

27 lines
740 B
YAML
Raw Normal View History

2020-02-09 15:48:22 +00:00
- name: Include todoist-github variables
include_vars: todoist-github.yml
- name: Create todoist-github directory
file:
2020-03-25 21:27:15 +00:00
path: /opt/todoist-github
2020-02-09 15:48:22 +00:00
state: directory
owner: "{{ docker_user.name }}"
mode: "{{ docker_compose_directory_mask }}"
become: true
- name: Install todoist-github compose file
template:
src: files/todoist-github/docker-compose.yml
2020-03-25 21:27:15 +00:00
dest: /opt/todoist-github/docker-compose.yml
2020-02-09 15:48:22 +00:00
mode: "{{ docker_compose_file_mask }}"
owner: "{{ docker_user.name }}"
validate: /usr/bin/docker-compose -f %s config
register: compose_file
become: true
- name: restart todoist-github
shell:
chdir: /opt/todoist-github
cmd: "{{ docker_update_command }}"
2020-02-09 15:48:22 +00:00
when: compose_file.changed