Some checks failed
Gitea Actions Demo / Explore-Gitea-Actions (push) Failing after -42s
14 lines
288 B
YAML
14 lines
288 B
YAML
- name: Start PythonFlask
|
|
gather_facts: True
|
|
become: False
|
|
hosts: localhost
|
|
connection: local
|
|
tasks:
|
|
- name: Start Docker COmpose
|
|
docker_compose_v2:
|
|
project_src: .
|
|
register: compose_output
|
|
- name: Show output
|
|
debug:
|
|
var: compose_output
|