DB IP autodetected when random container
gitea/salix/dev Something is wrong with the build of this commit Details

This commit is contained in:
Juan Ferrer 2019-08-06 14:18:15 +02:00
parent 3d88d41bd0
commit b2eab3ab51
2 changed files with 4 additions and 6 deletions

1
Jenkinsfile vendored
View File

@ -68,7 +68,6 @@ pipeline {
environment {
NODE_ENV = ""
FIREFOX_BIN = "/opt/firefox/firefox-bin"
DB_HOST = "${env.DOCKER_HOST_2}"
}
steps {
nodejs('node-lts') {

View File

@ -23,9 +23,6 @@ let containerId = 'salix-db';
let dataSources = require('./loopback/server/datasources.json');
let dbConf = dataSources.vn;
if (process.env.DB_HOST)
dbConf.host = process.env.DB_HOST;
let backSources = [
'!node_modules',
'loopback',
@ -424,8 +421,10 @@ async function docker() {
if (argv['random']) {
let inspect = await execP(`docker inspect -f "{{json .NetworkSettings.Ports}}" ${containerId}`);
let ports = JSON.parse(inspect.stdout);
dbConf.port = ports['3306/tcp'][0]['HostPort'];
let netSettings = JSON.parse(inspect);
dbConf.host = netSettings.IPAddress;
dbConf.port = netSettings.Ports['3306/tcp'][0]['HostPort'];
}
if (runChown) await dockerWait();