Initial homelab infrastructure

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
2026-02-13 19:41:46 +02:00
co-authored by Cursor
commit 5014d55d62
31 changed files with 1594 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
services:
uptime-kuma:
image: louislam/uptime-kuma:1
container_name: uptime-kuma
restart: always
extra_hosts:
- "host.docker.internal:host-gateway"
volumes:
- .:/app/data
- /var/run/docker.sock:/var/run/docker.sock
networks:
- homelab
labels:
- "traefik.enable=true"
- "traefik.http.routers.kuma.rule=Host(`kuma.zea.lt`)"
- "traefik.http.routers.kuma.entrypoints=websecure"
- "traefik.http.routers.kuma.tls.certresolver=leresolver"
- "traefik.http.routers.kuma.middlewares=auth@file"
- "traefik.http.services.kuma.loadbalancer.server.port=3001"