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" ];