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

10 lines
228 B
YAML
Raw Normal View History

2022-12-03 12:05:55 +00:00
- name: Clone pizzeria repository
git:
2023-01-07 19:32:42 +00:00
repo: "{{ git_origin }}"
dest: "{{ service_dir }}"
- name: Start the Docker Compose
2023-01-07 18:08:49 +00:00
docker_compose:
2023-01-07 19:32:42 +00:00
project_src: "{{ service_dir }}"
2022-12-03 12:05:55 +00:00
pull: true
remove_orphans: true