Skip to content

Commit cd0f43d

Browse files
committed
now is using root docker files and folder
1 parent 001c6f4 commit cd0f43d

6 files changed

Lines changed: 6 additions & 108 deletions

File tree

createProject.js

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,10 +65,14 @@ function doWork(params) {
6565
})
6666
.then(() => {
6767
process.stdout.write('package.json file created\n');
68-
return project.copyStaticFiles(projectFolder + '/static', params.outFolder, options, ['.editorconfig', '.eslintrc', '.eslintignore', 'LICENSE.txt', 'web/client/.babelrc']);
68+
return project.copyStaticFiles(projectFolder + '/static', params.outFolder, options, ['.editorconfig', '.eslintrc', '.eslintignore', 'LICENSE.txt', 'web/client/.babelrc', 'Dockerfile']);
6969
})
7070
.then(() => {
71-
process.stdout.write('Static files copied\n');
71+
process.stdout.write('copied static files\n');
72+
return project.copyTemplates('docker', params.outFolder + "/docker", options);
73+
})
74+
.then(() => {
75+
process.stdout.write('docker folder\n');
7276
process.stdout.write('Copying template files\n');
7377
return project.copyTemplates(projectFolder + '/templates', params.outFolder, options);
7478
})

project/standard/static/Dockerfile

Lines changed: 0 additions & 30 deletions
This file was deleted.

project/standard/static/docker/geostore-datasource-ovr-h2.properties

Lines changed: 0 additions & 2 deletions
This file was deleted.

project/standard/static/docker/geostore-datasource-ovr-postgres.properties

Lines changed: 0 additions & 24 deletions
This file was deleted.

project/standard/static/docker/geostore-datasource-ovr.properties

Lines changed: 0 additions & 24 deletions
This file was deleted.

project/standard/static/docker/wait-for-postgres.sh

Lines changed: 0 additions & 26 deletions
This file was deleted.

0 commit comments

Comments
 (0)