chore: remove uptimekuma
All checks were successful
Deploy / Prepare Build (push) Successful in 50s

This commit is contained in:
2025-08-12 23:00:27 +10:00
parent bf33e7c8bf
commit 07c544b36f
2 changed files with 0 additions and 32 deletions

View File

@ -42,10 +42,6 @@
import_tasks: tasks/gitea.yml
tags: gitea_install
- name: Uptime-kuma
import_tasks: tasks/uptimekuma.yml
tags: uptimekuma_install
- name: Gotify
import_tasks: tasks/gotify.yml
tags: gotify_install

View File

@ -1,28 +0,0 @@
---
- name: Create directories
file:
path: "{{ item }}"
state: directory
with_items:
- "{{ data_folder }}/uptime-kuma"
- "{{ data_folder }}/uptime-kuma/data"
- name: Create the uptimekuma container
docker_container:
name: uptime-kuma
image: louislam/uptime-kuma:1.23.16
restart_policy: unless-stopped
recreate: true
networks:
- name: proxy
volumes:
- /data/uptime-kuma/data:/app/data
- /etc/resolv.conf:/etc/resolv.conf:ro
- /var/run/docker.sock:/var/run/docker.sock
labels:
traefik.enable: "true"
traefik.http.routers.uptime.rule: "Host(`uptime.comprofix.com`)"
traefik.http.routers.uptime.entrypoints: "https"
traefik.http.routers.uptime.tls: "true"
traefik.http.services.uptime.loadbalancer.server.port: "3001"
traefik.http.services.uptime.loadbalancer.server.scheme: "http"