9 lines
253 B
YAML
9 lines
253 B
YAML
- name: Clone pizzeria repository
|
|
git:
|
|
repo: https://github.com/pizzapim/pizzeria
|
|
dest: /apps/pizzeria
|
|
- name: Start the Docker Compose
|
|
community.docker.docker_compose:
|
|
project_src: /apps/pizzeria
|
|
pull: true
|
|
remove_orphans: true
|