[READ-ONLY] Mirror of https://github.com/FoxxMD/komodo-import. Import existing compose stacks into Komodo foxxmd.github.io/komodo-import
compose docker import komodo toml
0

Configure Feed

Select the types of activity you want to include in your feed.

fix(files-on-server): Parent path should be host + relative scan

FoxxMD (Sep 4, 2025, 5:25 PM UTC) 6dfc244a d1cf3026

+2 -2
+2 -2
src/builders/stack/stackBuilder.ts
··· 147 147 continue; 148 148 } 149 149 } 150 - 150 + 151 151 try { 152 152 stacks.push(await buildFileStack(f, { 153 153 ...folderStackOptions, 154 154 writeEnv: writeEnvFolder, 155 - hostParentPath: this.dirData.scan, 155 + hostParentPath: joinPath(this.dirData.host, this.dirData.scan.replace(this.dirData.mount, '')), 156 156 logger: this.logger })); 157 157 } catch (e) { 158 158 folderLogger.error(new Error(`Unable to build Files-On-Server Stack for folder ${f}`, { cause: e }));