[ghost] Removes ghost demo.

This commit is contained in:
2025-06-03 15:15:11 -07:00
parent dd8ec9035e
commit 075613c5a5
2 changed files with 0 additions and 17 deletions

View File

@@ -1,16 +0,0 @@
{ config, ... }:
let
inherit (import ./lib.nix config) mkContainer terakoda;
in
{
virtualisation.oci-containers.containers.ghost = mkContainer rec {
image = "ghost:5";
hostName = "ghost";
domain = terakoda;
port = 2368;
environment = {
"NODE_ENV" = "development";
"url" = "https://${hostName}.${domain}";
};
};
}