Thomas Eizinger
Thomas Eizinger
Is it possible to do this via a client - outside of testcontainers - once the container is started?
The way I have done these things in the past outside of testcontainers is to put all the containers on the same network and use `container_name:internal_port` to allow them to...
Interesting, thanks for sharing! Before we make the IP address public, do you mind just forking the lib and try out if what you want to do works? I am...
Thanks for digging into this and opening a bug report upstream! I guess we just need to wait now until podman releases a new version and GitHub's virtual environment ships...
Thanks for the report! We are depending on the latest version of `bollard-stubs` so I'd suggest you open the issue with them to move away from chrono.
> What do you think about this approach? Would you be willing to accept a PR implementing the above? Yes definitely! That is the direction we would want to take...
No need to apologize :) At the moment, there is no docker-compose support and there are currently also no plans to add it. We would probably need to put in...
Good point. Reading up on how `testcontainers-java` does it, they actually run `docker-compose` using a docker container :open_mouth: We could also start with a similar approach as we did for...
To talk to the docker host, we currently simply shell out to the `docker` binary here: https://github.com/testcontainers/testcontainers-rs/blob/master/cli_client/src/cli.rs The whole thing is abstracted over through the `Docker` trait so that we...
That one is a bit tricky. What you could try to do is redirect all the traffic into individual files and read them again as things are starting up. I...