From 5aa22d2a8fc0640004cca783b695b6d09bc78c68 Mon Sep 17 00:00:00 2001 From: niten Date: Thu, 25 Jan 2024 09:29:05 -0800 Subject: [PATCH] /run is readonly, try removing ephemeral --- lemmy-container.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lemmy-container.nix b/lemmy-container.nix index dae94f5..fa71760 100644 --- a/lemmy-container.nix +++ b/lemmy-container.nix @@ -67,7 +67,8 @@ in { hostPort = cfg.port; containerPort = 80; }]; - ephemeral = true; + ## Does ephemeral mean read-only? + # ephemeral = true; bindMounts = { "/var/lib/postgres/data" = { hostPath = "${cfg.state-directory}/postgres";