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: Cycle todoist-github container
|
|
|
|
docker_compose:
|
|
|
|
project_src: /opt/todoist-github
|
|
|
|
pull: true
|
|
|
|
remove_orphans: true
|
|
|
|
remove_volumes: true
|
|
|
|
state: "{{ item }}"
|
|
|
|
when: compose_file.changed
|
|
|
|
loop:
|
|
|
|
- absent
|
|
|
|
- present
|