Artem Medvedev
Artem Medvedev
Feel free to reopen if it doesn't work for you! Generally example above should work just fine as I have such workflows working.
I don't mind In general, I believe we could get a token for CI from Docker (Docker acquired AtomicJar about 2023, so it might be possible) Can be discussed in...
You can generally achieve this with [stdout](https://docs.rs/testcontainers/latest/testcontainers/core/struct.ContainerAsync.html#method.stdout) or [stderr](https://docs.rs/testcontainers/latest/testcontainers/core/struct.ContainerAsync.html#method.stderr) methods which returns an async reader of logs which can be wrapped into stream (e.g with [ReaderStream](https://docs.rs/tokio-util/latest/tokio_util/io/struct.ReaderStream.html)), and simply use custom...