feat: use the connection if it is passed as a parameter

This commit is contained in:
Alex Moreno 2024-10-03 12:12:47 +02:00
parent 9416617800
commit 5e6353688f
1 changed files with 3 additions and 2 deletions

View File

@ -125,13 +125,14 @@ class Run extends Command {
try {
const server = new Server(ct, dbConfig);
if (isRandom) {
const useCustom = opts.ci || opts.network
if (isRandom || useCustom) {
try {
const netSettings = await ct.inspect({
format: '{{json .NetworkSettings}}'
});
if (opts.ci || opts.network) {
if (useCustom) {
dbConfig.host = opts.network
? netSettings.Networks[opts.network].IPAddress
: netSettings.Gateway;