From c3ed0d1330db73e377235d604f1dd35409eb59a7 Mon Sep 17 00:00:00 2001 From: Yan Lin Date: Fri, 26 Sep 2025 10:24:02 +0200 Subject: [PATCH] Remove igotify container --- hosts/nixos/vps/containers.nix | 27 --------------------------- 1 file changed, 27 deletions(-) diff --git a/hosts/nixos/vps/containers.nix b/hosts/nixos/vps/containers.nix index 3eebb98..d65f9a4 100644 --- a/hosts/nixos/vps/containers.nix +++ b/hosts/nixos/vps/containers.nix @@ -88,33 +88,6 @@ in autoStart = true; }; - # iGotify notification assistant - igotify = { - image = "ghcr.io/androidseb25/igotify-notification-assist:latest"; - - volumes = [ - "/var/lib/containers/igotify:/app/data" - ]; - - labels = { - "traefik.enable" = "true"; - "traefik.http.routers.inotify.rule" = "Host(`inotify.yanlincs.com`)"; - "traefik.http.routers.inotify.entrypoints" = "websecure"; - "traefik.http.routers.inotify.tls" = "true"; - "traefik.http.routers.inotify.tls.certresolver" = "cloudflare"; - "traefik.http.routers.inotify.tls.domains[0].main" = "*.yanlincs.com"; - "traefik.http.services.inotify.loadbalancer.server.port" = "8080"; - }; - - extraOptions = [ - "--network=podman" - "--security-opt=no-new-privileges:true" - ]; - - dependsOn = [ "gotify" ]; - autoStart = true; - }; - # OC Backend Scheduler oc-scheduler = { image = "localhost/oc-scheduler:v1";