Merge pull request 'feat: use the connection if it is passed as a parameter' (!7) from useCustomNetwork into master
Reviewed-on: #7 Reviewed-by: Juan Ferrer <juan@verdnatura.es>
This commit is contained in:
commit
2b6a97c243
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue