File tree Expand file tree Collapse file tree
packages/server/src/utils/builders Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -193,7 +193,7 @@ const createEnvFile = (compose: ComposeNested) => {
193193 let envContent = `APP_NAME=${ appName } \n` ;
194194 envContent += env || "" ;
195195 if ( ! envContent . includes ( "DOCKER_CONFIG" ) ) {
196- envContent += "\nDOCKER_CONFIG=/root/.docker/config.json " ;
196+ envContent += "\nDOCKER_CONFIG=/root/.docker" ;
197197 }
198198
199199 if ( compose . randomize ) {
@@ -223,7 +223,7 @@ export const getCreateEnvFileCommand = (compose: ComposeNested) => {
223223 let envContent = `APP_NAME=${ appName } \n` ;
224224 envContent += env || "" ;
225225 if ( ! envContent . includes ( "DOCKER_CONFIG" ) ) {
226- envContent += "\nDOCKER_CONFIG=/root/.docker/config.json " ;
226+ envContent += "\nDOCKER_CONFIG=/root/.docker" ;
227227 }
228228
229229 if ( compose . randomize ) {
You can’t perform that action at this time.
0 commit comments