[ghost] Adds ghost demo.

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

View File

@@ -5,6 +5,7 @@
imports = [
./containers/dm-companion.nix
./containers/freshrss.nix
./containers/ghost.nix
./containers/gitea.nix
./containers/grafana.nix
./containers/jobhunt.nix

View File

@@ -0,0 +1,16 @@
{ 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}";
};
};
}