zerobyte/app/client/lib/volume-path.ts
2026-02-18 21:07:37 +01:00

11 lines
298 B
TypeScript

import type { Volume } from "./types";
const VOLUME_MOUNT_BASE = "/var/lib/zerobyte/volumes";
export const getVolumeMountPath = (volume: Volume): string => {
if (volume.config.backend === "directory") {
return volume.config.path;
}
return `${VOLUME_MOUNT_BASE}/${volume.shortId}/_data`;
};