4592-jenkins_tests #1075
|
@ -56,8 +56,12 @@ module.exports = class Docker {
|
|||
let inspect = await this.execP(`docker inspect -f "{{json .NetworkSettings}}" ${this.id}`);
|
||||
let netSettings = JSON.parse(inspect.stdout);
|
||||
|
||||
if (ci)
|
||||
if (ci) {
|
||||
console.log('Running on CI...');
|
||||
this.dbConf.host = netSettings.Gateway;
|
||||
}
|
||||
|
||||
console.log(netSettings);
|
||||
|
||||
this.dbConf.port = netSettings.Ports['3306/tcp'][0]['HostPort'];
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue