From 80c49a6727d51d136f78b116f524ce6dd7002906 Mon Sep 17 00:00:00 2001 From: m3ta-chiron Date: Tue, 9 Jun 2026 18:40:25 +0200 Subject: [PATCH] chore: pin m3-atlas ghost to version 6 --- hosts/m3-atlas/services/containers/ghost.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hosts/m3-atlas/services/containers/ghost.nix b/hosts/m3-atlas/services/containers/ghost.nix index f368c15..be62bb2 100644 --- a/hosts/m3-atlas/services/containers/ghost.nix +++ b/hosts/m3-atlas/services/containers/ghost.nix @@ -1,6 +1,6 @@ {config, ...}: { virtualisation.oci-containers.containers."ghost" = { - image = "docker.io/ghost:latest"; + image = "docker.io/ghost:6-alpine"; environmentFiles = [config.age.secrets.ghost-env.path]; ports = ["127.0.0.1:3002:2368"]; volumes = ["ghost_data:/var/lib/ghost/content"];