gatus status page

This commit is contained in:
eneller
2025-10-07 12:22:49 +00:00
parent ff621405e3
commit e32ece8e0d
4 changed files with 49 additions and 5 deletions

View File

@@ -4,8 +4,10 @@ services:
ports: ports:
- 50000:8080 - 50000:8080
volumes: volumes:
- type: bind - ./config:/config
source: './config.yaml' - ./data:/data
target: /config/config.yaml environment:
- GATUS_CONFIG_PATH=/config
container_name: gatus container_name: gatus
image: twinproduction/gatus image: twinproduction/gatus
restart: always

5
gatus/config/global.yaml Normal file
View File

@@ -0,0 +1,5 @@
metrics: false
ui:
title: Health Dashboard | neller.org
header: neller.org
logo: ""

37
gatus/config/neller.yaml Normal file
View File

@@ -0,0 +1,37 @@
storage:
type: sqlite
path: /data/data.db
endpoints:
- name: Vault
url: https://vault.neller.org
interval: 5m
conditions:
- "[STATUS] == 200"
- name: Cloud
url: https://cloud.neller.org
interval: 5m
conditions:
- "[STATUS] == 200"
- name: Git
url: https://git.neller.org
interval: 5m
conditions:
- "[STATUS] == 200"
- name: vb
url: https://vb.neller.org
interval: 5m
conditions:
- "[STATUS] == 200"
- name: epub2go
url: https://epub2go.neller.org
interval: 5m
conditions:
- "[STATUS] == 200"
- name: TeamSpeak3
url: ssh://ts.neller.org:10022
ssh:
username: ""
password: ""
interval: 5m
conditions:
- "[RESPONSE_TIME] < 5000"

View File

@@ -4,7 +4,7 @@ services:
image: gitea/act_runner:latest image: gitea/act_runner:latest
env_file: env_file:
- .env - .env
#volumes: volumes:
- /var/run/docker.sock:/var/run/docker.sock # needed to create a separate docker container for each job
#- ./config.yaml:/config.yaml #- ./config.yaml:/config.yaml
#- ./data:/data #- ./data:/data
#- /var/run/docker.sock:/var/run/docker.sock # needed to create a separate docker container for each job