I'm trying to write the logs from a docker-compose on the screen while running a azure DevOps pipeline.
This is what I'm doing right now is:
- script: |
date
docker-compose logs --tail="all"
displayName: docker-compose logs
workingDirectory: $(Build.SourcesDirectory)/scripts/validation_tests
condition: always()
But I'm getting a: "Attaching to
Finishing: docker-compose logs"
And no more information...
Do I need something else?
Thanks in advance!