added dev docker file

This commit is contained in:
subnub
2025-02-24 11:29:21 -05:00
parent 28bcc44ea2
commit 11bed01c50
14 changed files with 48 additions and 47 deletions
+9
View File
@@ -0,0 +1,9 @@
import env from "../enviroment/env";
export const getFSStoragePath = () => {
if (env.docker) {
return "/data/";
} else {
return env.fsDirectory;
}
};