[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: Remove old usage of HOST_PARENT_PATH

FoxxMD (Sep 17, 2025, 2:33 PM UTC) f3726203 062f0fef

+5 -6
+2 -2
.devcontainer/compose.mounts.yml
··· 1 1 version: '3.7' 2 2 services: 3 3 app: 4 - #volumes: 4 + volumes: 5 5 # # Add local mounts here 6 - # - /home/myUser/homelab:/filesOnServer 6 + - /home/foxx/code/komodo-import/example:/filesOnServer
+1 -1
docsite/src/components/QuickStart/QSCompose.tsx
··· 60 60 const seq = modifiedDoc.getIn(['services','komodo-import','environment']) as YAMLSeq; 61 61 62 62 63 - const hostS = new Scalar(`HOST_PARENT_PATH=${hostPath}`); 63 + const hostS = new Scalar(`HOST_DIR=${hostPath}`); 64 64 hostS.commentBefore = `# Same as mounted directory above` 65 65 seq.add(hostS); 66 66
+1 -1
package.json
··· 14 14 "docs:install": "cd docsite && npm ci --no-audit", 15 15 "docs:start": "cd docsite && npm start", 16 16 "docs:build": "cd docsite && npm run build", 17 - "demo": "HOST_PARENT_PATH=/my/cool/path SERVER_NAME=my-cool-server FILES_ON_SERVER_DIR=tests/exampleDir tsx src/index.ts" 17 + "demo": "HOST_DIR=/my/cool/path SERVER_NAME=my-cool-server FILES_ON_SERVER_DIR=tests/exampleDir tsx src/index.ts" 18 18 }, 19 19 "engines": { 20 20 "node": ">=18.19.1",
+1 -2
src/index.ts
··· 94 94 } 95 95 96 96 const filesOnServerConfig: FilesOnServerConfig = { 97 - ...importOptions, 98 - hostParentPath: process.env.HOST_PARENT_PATH 97 + ...importOptions 99 98 }; 100 99 101 100 const stackBuilder = new StackBuilder(filesOnServerConfig, dirData[1], logger);