You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
290 B
12 lines
290 B
1 year ago
|
---
|
||
|
- name: Copy service folder
|
||
|
ansible.posix.synchronize:
|
||
|
src: "{{ services_dir }}/{{ item }}"
|
||
|
dest: /services/
|
||
|
with_items: "{{ services }}"
|
||
|
|
||
|
- name: Start Docker compose
|
||
|
community.docker.docker_compose:
|
||
|
project_src: "/services/{{ item }}"
|
||
|
with_items: "{{ services }}"
|