feat: use the connection if it is passed as a parameter
This commit is contained in:
parent
9416617800
commit
5e6353688f
|
@ -125,13 +125,14 @@ class Run extends Command {
|
||||||
try {
|
try {
|
||||||
const server = new Server(ct, dbConfig);
|
const server = new Server(ct, dbConfig);
|
||||||
|
|
||||||
if (isRandom) {
|
const useCustom = opts.ci || opts.network
|
||||||
|
if (isRandom || useCustom) {
|
||||||
try {
|
try {
|
||||||
const netSettings = await ct.inspect({
|
const netSettings = await ct.inspect({
|
||||||
format: '{{json .NetworkSettings}}'
|
format: '{{json .NetworkSettings}}'
|
||||||
});
|
});
|
||||||
|
|
||||||
if (opts.ci || opts.network) {
|
if (useCustom) {
|
||||||
dbConfig.host = opts.network
|
dbConfig.host = opts.network
|
||||||
? netSettings.Networks[opts.network].IPAddress
|
? netSettings.Networks[opts.network].IPAddress
|
||||||
: netSettings.Gateway;
|
: netSettings.Gateway;
|
||||||
|
|
Loading…
Reference in New Issue