Add heimdall

This commit is contained in:
Jake Howard
2020-10-07 14:09:23 +01:00
parent e9f61070f8
commit 7f09db5d20
5 changed files with 48 additions and 0 deletions

View File

@ -0,0 +1,17 @@
- name: Create install directory
file:
path: /opt/heimdall
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/heimdall/docker-compose.yml
mode: "{{ docker_compose_file_mask }}"
owner: "{{ docker_user.name }}"
validate: /usr/bin/docker-compose -f %s config
notify: restart heimdall
become: true