[Uptime Kuma] Adds Uptime Kuma to blazestar.net

This commit is contained in:
2025-07-31 16:05:15 -07:00
parent 1d1702bd9b
commit 3b46856b66
3 changed files with 19 additions and 1 deletions

View File

@@ -0,0 +1,15 @@
{ config, ... }:
let
inherit (import ../lib.nix config) blazestar;
in
{
virtualisation.web-containers.containers.uptime = {
image = "louislam/uptime-kuma:1";
hostname = "uptime";
domain = blazestar;
port = 3001;
volumes = [
"uptime-kuma:/app/data"
];
};
}