Open
Description
The addition of --wait
(#8777) was nice. But it would be especially helpful in CI/CD environments if the logs were streamed during the "wait".
For example, I'm trying to start an Oracle DB with --wait
and it's not working. On CI/CD it's almost impossible to capture the logs for it unless I do some very weird trickery of running docker compose logs -f
in parallel.
I understand that --wait
implies --detach
, but I guess it does not need to be the case until the --wait
condition is met.