Hello,
I want to check drone logs on server that was started by docker-compose. How can I do that?
I tried to perform docker exec ... /bin/bash
but it seems that this image doesn’t contains any bash/sh or something like this.
Can you help me?
Hello,
I want to check drone logs on server that was started by docker-compose. How can I do that?
I tried to perform docker exec ... /bin/bash
but it seems that this image doesn’t contains any bash/sh or something like this.
Can you help me?
the agent writes its logs to stdout/stderr, which means you can run docker logs <container>
Thank you!
Is it only writes to stdout/stderr or some file logs also present?
It only writes to stdout / stderr