This repository has been archived on 2024-04-28. You can view files and clone it, but cannot push or open issues or pull requests.
iris/roles/uptime_kuma/tasks/main.yml
2023-05-18 00:21:34 +02:00

15 lines
353 B
YAML

- name: Create working directory
file:
path: /srv/uptime-kuma
state: directory
- name: Copy Docker compose file
template:
src: "{{ role_path }}/docker-compose.yml.j2"
dest: /srv/uptime-kuma/docker-compose.yml
- name: Deploy Docker compose
docker_compose:
project_src: /srv/uptime-kuma
pull: true
remove_orphans: true