The existing question How to view log output using docker-compose run allows me to interactively view docker compose run
logs. But for Gitlab CI/CD I need the output from all involved containers on stdout
.
A simple workaround would appear to be docker log --follow &
beforehand but in that case the CI/CD pipeline does not terminate, which causes it to fail with a timeout.