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
225 B
YAML
Raw Normal View History

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