14 lines
218 B
YAML
14 lines
218 B
YAML
|
---
|
||
|
# tasks file for server
|
||
|
|
||
|
- name: Stopping existing service
|
||
|
community.docker.docker_compose:
|
||
|
project_src: /home/valentin/db
|
||
|
state: absent
|
||
|
register: output
|
||
|
|
||
|
|
||
|
- name: Debug output
|
||
|
debug:
|
||
|
var: output
|