13 lines
295 B
YAML
13 lines
295 B
YAML
---
|
|
- hosts: WHAT_HOST_IN_USE
|
|
|
|
tasks:
|
|
- name: Set up docker-compose file
|
|
template:
|
|
src: "WHAT_PART_FOLDER/docker-compose.yml"
|
|
dest: "DESTINATION_FOLDER"
|
|
|
|
- name: docker compose up
|
|
shell:
|
|
chdir: "DESTINATION_FOLDER/"
|
|
cmd: docker-compose up -d |