fix: revert dokuwiki to sdnotify=conmon, image lacks healthcheck

This commit is contained in:
Lewis Wynne 2026-04-04 23:58:50 +01:00
parent 102b195d27
commit 5fb43260c8

View file

@ -10,7 +10,6 @@
virtualisation.oci-containers.containers.dokuwiki = { virtualisation.oci-containers.containers.dokuwiki = {
image = "lscr.io/linuxserver/dokuwiki:2025-05-14b-ls299"; image = "lscr.io/linuxserver/dokuwiki:2025-05-14b-ls299";
podman.user = "podman"; podman.user = "podman";
podman.sdnotify = "healthy";
environment = { environment = {
PUID = "1000"; PUID = "1000";
PGID = "1000"; PGID = "1000";
@ -22,4 +21,7 @@
]; ];
ports = [ "127.0.0.1:8070:80" ]; ports = [ "127.0.0.1:8070:80" ];
}; };
# Workaround for NixOS/nixpkgs#410857 until backport of #475089 lands
systemd.services.podman-dokuwiki.serviceConfig.Delegate = true;
} }