不同测试容器的每次启动都会抛出com.github.dockerjava.api.exception.InternalServerErrorException: {"message":"Get https://quay.io/v1/_ping: dial tcp x.x.x.x: getsockopt: connection refused"}
这并不奇怪(码头工作者是公司代理人)。如何配置testcontainer以使用特定的HTTP代理?
另一种方法可能是禁用" ping"命令并使用我们公司的docker repo。
答案 0 :(得分:3)
您可以在构建映像或运行容器时指定env变量。例如,下面我通过传递代理配置来构建Elasticsearch容器:
GenericContainer container = new GenericContainer("docker.elastic.co/elasticsearch/elasticsearch:6.1.1")
.withExposedPorts(9200)
.withEnv("discovery.type", "single-node")
.withEnv("HTTP_PROXY", "http://127.0.0.1:3001")
.withEnv("HTTPS_PROXY", "http://127.0.0.1:3001")
.waitingFor(Wait.forHttp("/_cat/health?v&pretty")
.forStatusCode(200));
否则,您可以在Docker中全局设置代理设置。对于具有docker计算机的Windows,您必须连接到它和boot2docker
配置文件中的HTTP代理。
docker-machine ssh default
sudo -s
echo "export HTTP_PROXY=http://your.proxy" >> /var/lib/boot2docker/profile
echo "export HTTPS_PROXY=http://your.proxy" >> /var/lib/boot2docker/profile
在Linux上,您可以创建文件~/.docker/config.json
,例如:
{
"proxies":
{
"default":
{
"httpProxy": "http://127.0.0.1:3001",
"noProxy": "*.test.example.com,.example2.com"
}
}
}