Andre Hofmeister
Andre Hofmeister
f0f112bd53cc4c1ff8dcbb2001334a1b36a9f487, closes #576.
You have to build the image first, then reuse the `id`. I assume you do not `await` the task and build the image twice, see: https://github.com/testcontainers/testcontainers-dotnet/blob/f7c0fc6bed67d706ad03c2d89ca19767b323ed92/tests/Testcontainers.Tests/Unit/Images/ImageFromDockerfileTest.cs#L82 BTW, I cannot access...
Make sure you are building the image just once and reuse the id.
Which testing framework do you use? Here is an example that uses xUnit.net (see the C# snippet): https://github.com/testcontainers/testcontainers-dotnet/issues/582#issuecomment-1247921642. There are a couple of ways to [share fixtures](https://xunit.net/docs/shared-context) in xUnit.net.
Is there anything particular missing? I can add an example to the Wiki.
https://github.com/testcontainers/testcontainers-dotnet/wiki/Quickstart
> Just checked that the java library supports disabling the reaper at the envVars level, only. Therefore, I'm going to update this PR to remove the support at the properties...
> is the ability to set the reaper at the envVar level only the thing that you don't like? I cannot say much about the Go implementation. My Go skills...
Any progress on this issue? Otherwise I'll have a look at it.
The env variable `DOCKER_AUTH_CONFIG` is not yet supported. Base64 just works with `~/.docker/config.json`. Anyway, it is not difficult to implement. We just need another provider. Something like: https://github.com/testcontainers/testcontainers-dotnet/blob/0f4d0ff3ab79567bda94b8d3d41e0a9987665497/src/Testcontainers/Builders/Base64Provider.cs#L12 To read...