Artem Medvedev

Results 183 comments of Artem Medvedev

Hi @bpmooch 👋 I'll put some context: we use `bollard` client in [Testcontainers for Rust ](https://github.com/testcontainers/testcontainers-rs/). And recently we completely switched to the `bollard` client, there is no issues with...

As [it was discussed](https://github.com/testcontainers/testcontainers-rs/pull/800#discussion_r2170483838) it's not enough to simply rely on `DOCKER_DEFAULT_PLATFORM` as `testcontainers` supports remote hosts (and [Testcontainers Cloud](https://testcontainers.com/cloud/)) that may differ from the local setup. So it's been...

What are you trying to say? Did anyone argued that it should not be honored? Issue was accepted initially Ignoring other scenarios also would be a bug as it's common...

Thank you for the contribution 🙏 That's really useful enhancement, I'll take a look soon I think https://github.com/testcontainers/testcontainers-rs/issues/478 can be addressed by this change

Also we could drop/rework our `testimages` subcrate and utilize the builder in our tests instead It's better to do as follow-up, but it would be a good exercise to check...

@mervyn-mccreight may I ask you to take a look at the design too, please? This PR is extremely useful and I don't want the job to be lost, we need...

Few PRs have been merged (e.g bollard update), could you update the branch and solve conflicts?

Hi 👋 Currently it can be achieved by custom implementation of [`Image`](https://docs.rs/testcontainers/0.23.3/testcontainers/core/trait.Image.html), either on top of the existing one (delegation) or implementing your own. Also, you can consider [`GenericImage`](https://docs.rs/testcontainers/0.23.3/testcontainers/struct.GenericImage.html) -...

Hi there 👋 Actually, I think it makes a lot of sense to support `stdin`. This way, pipes can also be used. E.g: ```sh some-command | dotenv-linter --stdin ``` This...

> The idiomatic way of accepting stdin instead of a file in a cli should be using - as a filename. That's definitely a well established pattern. I don't mind...