4592-jenkins_tests #1075

Merged
joan merged 27 commits from 4592-jenkins_tests into dev 2022-10-05 12:40:29 +00:00
1 changed files with 6 additions and 1 deletions
Showing only changes of commit 98a2f79691 - Show all commits

View File

@ -43,7 +43,12 @@ module.exports = class Docker {
let runChown = process.platform != 'linux';
log('Starting container...');
const container = await this.execP(`docker run --env RUN_CHOWN=${runChown} -d ${dockerArgs} salix-db`);
const container = await this.execP(`
docker run
--network jenkins_default
--env RUN_CHOWN=${runChown}
-d ${dockerArgs} salix-db
`);
this.id = container.stdout.trim();
try {