fix: refs #5483 run realm param code fix
This commit is contained in:
parent
2daf409f82
commit
d1bb74d84b
|
@ -126,7 +126,9 @@ class Run extends Command {
|
||||||
});
|
});
|
||||||
|
|
||||||
if (opts.ci) {
|
if (opts.ci) {
|
||||||
dbConfig.host = netSettings.Networks[networkName].IPAddress;
|
dbConfig.host = network
|
||||||
|
? netSettings.Networks[network].IPAddress
|
||||||
|
: netSettings.Gateway;
|
||||||
dbConfig.port = 3306;
|
dbConfig.port = 3306;
|
||||||
} else
|
} else
|
||||||
dbConfig.port = netSettings.Ports['3306/tcp'][0].HostPort;
|
dbConfig.port = netSettings.Ports['3306/tcp'][0].HostPort;
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@verdnatura/myt",
|
"name": "@verdnatura/myt",
|
||||||
"version": "1.5.32",
|
"version": "1.5.33",
|
||||||
"author": "Verdnatura Levante SL",
|
"author": "Verdnatura Levante SL",
|
||||||
"description": "MySQL version control",
|
"description": "MySQL version control",
|
||||||
"license": "GPL-3.0",
|
"license": "GPL-3.0",
|
||||||
|
|
Loading…
Reference in New Issue