From 3b3331e0c0b1c531a74f2587ca25bb29d4c3b093 Mon Sep 17 00:00:00 2001 From: admin Date: Thu, 19 Jun 2025 15:48:31 +0100 Subject: [PATCH] add webdav --- home/podman.nix | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/home/podman.nix b/home/podman.nix index 28ab926..3467daa 100644 --- a/home/podman.nix +++ b/home/podman.nix @@ -814,6 +814,28 @@ }; }; + webdav = { + image = "docker.io/bytemark/webdav:latest"; + autoStart = true; + autoUpdate = "registry"; + network = "bridge"; + environmentFile = [ + "/mnt/services/secrets/default" + "/mnt/services/secrets/webdav" + ]; + volumes = [ + "/mnt/services/webdav:/var/lib/dav" + ]; + ports = [ + "8009:80" + ]; + extraConfig = { + Service = { + TimeoutStartSec = 900; + }; + }; + }; + wireguard = { image = "lscr.io/linuxserver/wireguard:latest"; autoStart = true;