Andre Hofmeister

Results 407 comments of Andre Hofmeister

> I am under a vpn, can that be the issue ? Yes. It looks like you are not able to pull images from Docker Hub. I have not found...

I'll close this issue. Don't hesitate to reopen it again if you have any further questions or problems.

> Note: this issue may affect any container with a random host port binding, not only Ryuk. That concerns me too, but at least most of the pipelines don't use...

We can use something like this to create a test instance: ```csharp public sealed class GitHub : IAsyncLifetime { private const string CertsDirectoryName = "certs"; private static readonly string ContainerCertDirectoryPath...

Relates to #407. Assigning an existing or running container (`ContainerInspectResponse`) to the respective field in `TestcontainersContainer` sounds good. Then we can decide if it's even necessary to create and (or)...

Thanks for your feature request. Supporting Azure Cosmos DB would be great. Right now, .NET Testcontainers does not ship any 3rd party database or message broker libraries etc. This makes...

You need to expose the port `8081` too. It's not exposed by the Dockerfile. Then I recommend assigning random ports. In addition to that, it's not enough to just wait...

You need to be aware of the async operations. Your `IntegrationTestCollectionFixture` is not right. Use the [IAsyncLifetime](https://bartwullems.blogspot.com/2019/09/xunit-async-lifetime.html) interface of xUnit.net. ```csharp public sealed class IntegrationTestCollectionFixture : IAsyncLifetime, IDisposable { private...