Alex Kretzschmar 4f3cf9eaab initial commit
2018-08-08 15:37:36 +01:00

11 lines
279 B
YAML

---
- name: create destination dir for generated readme
file:
path: "{{ output_path }}"
state: directory
- name: write docker-compose file
template:
src: ../templates/docker-compose.yml.j2
dest: "{{ output_path }}/docker-compose.yml"
delegate_to: localhost