Compare commits

...
1 Commits
Author SHA1 Message Date
Periodic b3f310d2bd "[ghost] Removes ghost demo."
This reverts commit 03e34d52cff747e1f1527f138fa672010085d2f5.
2025-06-03 15:15:28 -07:00
2 changed files with 0 additions and 17 deletions
-1
View File
@@ -5,7 +5,6 @@
imports = [
./containers/dm-companion.nix
./containers/freshrss.nix
./containers/ghost.nix
./containers/gitea.nix
./containers/grafana.nix
./containers/jobhunt.nix
-16
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}";
};
};
}