我正在使用DockerCloud Repositories Autotest在图像推送之前测试服务。
这是我的docker-compose.test.yml
:
version: '3'
services:
sut:
build: .
command: run_tests.sh
depends_on:
- test-dep
test-dep:
image: mongo:3.4
tty: true
在构建日志中,我只能看到sut
服务输出,但我需要在测试失败时查看其他服务输出以进行调试。我也尝试过添加tty: true
服务块但没有成功。Mongo 只是一个例子,任何其他图像都以相同的方式工作。
如何在存储库构建日志中显示所有 自动测试容器的输出?