the docker ps
command to find the problematic Runner information;# View the last 100 lines of the log for container ID abc123, recommended:
docker logs --tail 100 abc123
# View logs from the past 5 minutes:
docker logs --since 5m abc123
# View logs from 5 minutes before a specific timestamp:
docker logs --until 2023-10-01T00:00:00 abc123
docker logs --until 5m abc123
# View the log for container ID abc123, not recommended if data is voluminous:
docker logs abc123.