在 Docker Compose 日志中打印时间戳
Print timestamps in Docker Compose logs
我看到我的 web
日志带有 docker-compose logs web
,但我想为这些消息添加时间戳,因为现在它们完全脱离了上下文(不知道什么时候事件发生)。我试过 docker-compose logs -t web
,但似乎 Docker Compose 不知道这个标志。
您知道如何让时间戳出现在 Docker Compose 日志中吗?
正如 Ittiel 所指出的,docker-compose
现在支持 -t
参数。
docker-compose 1.8.0版本支持日志,可以使用:
docker-compose logs -t
我看到我的 web
日志带有 docker-compose logs web
,但我想为这些消息添加时间戳,因为现在它们完全脱离了上下文(不知道什么时候事件发生)。我试过 docker-compose logs -t web
,但似乎 Docker Compose 不知道这个标志。
您知道如何让时间戳出现在 Docker Compose 日志中吗?
docker-compose
现在支持 -t
参数。
docker-compose 1.8.0版本支持日志,可以使用:
docker-compose logs -t