add support for docker-compose contents

This commit is contained in:
Nico Schottelius 2023-09-26 13:54:38 +02:00
commit dbe15bb09b
6 changed files with 112 additions and 15 deletions

View file

@ -34,4 +34,13 @@
path: /mnt
state: mounted
fstype: nfs
when: runs_synapse
when: '"synapse" in docker_compose'
- name: Create docker-compose project directories
ansible.builtin.file:
path: /mnt/synapse_data
state: directory
mode: '0700'
owner: "{{ ansible_user }}"
tags:
- directory
when: '"synapse" in docker_compose'