Aidan Do

Results 51 comments of Aidan Do

Hi @dboreham, it looks like it's currently in the works: https://github.com/testcontainers/testcontainers-java/issues/5596

Hey @dhoard. Thanks for reporting this. This is a valid use case and it's no surprise that users would expect that `setCommand(String command)` to split a command properly as a...

On the [dockerfile docs](https://docs.docker.com/engine/reference/builder/#run), there seems to be mention of windows containers: > RUN (shell form, the command is run in a shell, which by default is /bin/sh -c on...

I believe Windows containers on windows (WCOW) isn't currently supported on Test containers. That work is currently being done to support it as per https://github.com/testcontainers/testcontainers-java/issues/5621. I feel like it would...

@dhoard I like that suggestion; It's better than the `withPosixCommand` and `withWindowsCommand` in that it's flexible and is open to extension. But before going with that approach. I think we...

It actually might be a shell thing. From `man bash` ``` DEFINITIONS The following definitions are used throughout the rest of this document. blank A space or tab. word A...

I've been able to reproduce this issue. If you set `PostgreSQLContainer` TTY to true, then it fails to start as it relies on logs for it's startup strategy: ``` Caused...

Thank you @alexsuter for the issue and @AB-xdev for the additional info. I've been able to reproduce this on my end (out of 10, I got 6 `TimeoutExceptions`). Let me...

Ok I've submitted a fix for this issue. In the meantime, the workaround would be to use a library like [awaitily](http://www.awaitility.org/) (or roll your own timeout mechanism) in order to...

I believe that this issue is now fixed in selenium 4.5.1 https://github.com/SeleniumHQ/selenium/issues/10984 Could someone give 4.5.1/4.5.2 a try and see if this is still an issue?