From 7ac91b21b3dd5627af1408c7bd5531a00393c112 Mon Sep 17 00:00:00 2001 From: Nathan Date: Sun, 1 Feb 2026 14:16:19 -0600 Subject: [PATCH] volume stuff --- system/virtualization/docker/authentik/default.nix | 2 +- system/virtualization/docker/openwebui/default.nix | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/system/virtualization/docker/authentik/default.nix b/system/virtualization/docker/authentik/default.nix index dfbfc59..79bc806 100644 --- a/system/virtualization/docker/authentik/default.nix +++ b/system/virtualization/docker/authentik/default.nix @@ -212,7 +212,7 @@ in { RemainAfterExit = true; }; script = '' - docker volume inspect authentik_database || docker volume create authentik_database --driver=btrfs + docker volume inspect authentik_database || docker volume create authentik_database --driver=local ''; partOf = [ "docker-compose-authentik-root.target" ]; wantedBy = [ "docker-compose-authentik-root.target" ]; diff --git a/system/virtualization/docker/openwebui/default.nix b/system/virtualization/docker/openwebui/default.nix index 616df2f..48b925e 100644 --- a/system/virtualization/docker/openwebui/default.nix +++ b/system/virtualization/docker/openwebui/default.nix @@ -83,7 +83,7 @@ in { RemainAfterExit = true; }; script = '' - docker volume inspect vol_openwebui || docker volume create vol_openwebui --driver=btrfs + docker volume inspect vol_openwebui || docker volume create vol_openwebui --driver=local ''; partOf = [ "docker-compose-openwebui-root.target" ]; wantedBy = [ "docker-compose-openwebui-root.target" ];