Tobias Reisinger
4104057771
roles/ and inventory/ are now in playbooks/ also fixed issues reported by ansible-lint
16 lines
450 B
YAML
16 lines
450 B
YAML
---
|
|
- name: Template the docker-compose file
|
|
ansible.builtin.template:
|
|
src: docker-compose.yml.j2
|
|
dest: "{{ (service_path, 'docker-compose.yml') | 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"
|