change structure

add alerts
This commit is contained in:
Pim Kunis 2023-05-17 11:00:17 +02:00
parent 306abe6c32
commit 106116528d
14 changed files with 432 additions and 9 deletions

View file

@ -0,0 +1,11 @@
version: '3.3'
services:
uptime-kuma:
image: louislam/uptime-kuma:1
ports:
- 3001:3001
container_name: uptime-kuma
restart: always
volumes:
- {{ backup_mount_point }}/uptime-kuma/data:/app/data

View file

@ -0,0 +1,10 @@
- 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