Zephyris94

Results 2 comments of Zephyris94

Hi, I am using it now via _mongoDbContainer = new MongoDbBuilder() .WithReplicaSet() .WithImage("mongo:latest") .WithUsername("") .WithPassword("") .WithPortBinding(_mongoPort, true) .WithWaitStrategy(Wait.ForUnixContainer() .UntilPortIsAvailable(_mongoPort)) .Build(); The port is: private const int _mongoPort = 27017; Because...

> it is not necessary to override the default configurations Didn't know that. Actually this helped and worked, thank you very much, looks much cleaner