16 lines
431 B
YAML
16 lines
431 B
YAML
---
|
|
- name: Template the compose file
|
|
ansible.builtin.template:
|
|
src: compose.yaml.j2
|
|
dest: "{{ (service_path, 'compose.yaml') | path_join }}"
|
|
mode: "0644"
|
|
- name: Copy the Dockerfile
|
|
ansible.builtin.copy:
|
|
src: Dockerfile
|
|
dest: "{{ (service_path, 'Dockerfile') | path_join }}"
|
|
mode: "0644"
|
|
- name: Copy the data files
|
|
ansible.builtin.copy:
|
|
src: data
|
|
dest: "{{ service_path }}"
|
|
mode: "0755"
|