This repository has been archived on 2023-04-26. You can view files and clone it, but cannot push or open issues or pull requests.
max/roles/pizzeria/tasks/main.yml

9 lines
228 B
YAML

- name: Clone pizzeria repository
git:
repo: "{{ git_origin }}"
dest: "{{ service_dir }}"
- name: Start the Docker Compose
docker_compose:
project_src: "{{ service_dir }}"
pull: true
remove_orphans: true