infrastructure/ansible/roles/yourls/tasks/main.yml
Jake Howard 870ac50c58
Update compose path to not be absolute
This relies on `which` to find the correct binary instead
2021-02-07 15:59:18 +00:00

27 lines
682 B
YAML

- name: Create install directory
file:
path: /opt/yourls
state: directory
owner: "{{ docker_user.name }}"
mode: "{{ docker_compose_directory_mask }}"
become: true
- name: Install compose file
template:
src: files/docker-compose.yml
dest: /opt/yourls/docker-compose.yml
mode: "{{ docker_compose_file_mask }}"
owner: "{{ docker_user.name }}"
validate: docker-compose -f %s config
notify: restart yourls
become: true
- name: Install redirect file
template:
src: files/index.html
dest: /opt/yourls/index.html
mode: "{{ docker_compose_file_mask }}"
owner: "{{ docker_user.name }}"
notify: restart yourls
become: true