Skip to content

Commit b6ad8e8

Browse files
committed
fix: Incorrect config mapping in wizard
1 parent 0719fbf commit b6ad8e8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/data/composeTemplates.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ const generateEditorEnv = (config, deploymentType) => {
139139
// Generate volumes section
140140
const generateVolumes = (config) => {
141141
const volumes = [];
142-
volumes.push(` - ${config.CONFIG_PATH || './data'}:/config`);
142+
volumes.push(` - ${config.CONFIG_PATH || './data'}:/var/www/config`);
143143
if (config.STRM_PATH) {
144144
volumes.push(` - ${config.STRM_PATH}:/strm`);
145145
}

0 commit comments

Comments
 (0)