Update compose path to not be absolute

This relies on `which` to find the correct binary instead
This commit is contained in:
Jake Howard
2021-02-07 15:59:18 +00:00
parent a95ceb348f
commit 870ac50c58
17 changed files with 17 additions and 17 deletions

View File

@ -15,6 +15,6 @@
dest: /opt/upload/docker-compose.yml
mode: "{{ docker_compose_file_mask }}"
owner: "{{ docker_user.name }}"
validate: /usr/bin/docker-compose -f %s config
validate: docker-compose -f %s config
notify: restart upload
become: true