10000 CI: fix docker port mapping · arangodb/arangodb-java-driver@21be251 · GitHub
[go: up one dir, main page]

Skip to content

Commit 21be251

Browse files
committed
CI: fix docker port mapping
1 parent b304b85 commit 21be251

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

docker/start_proxy.sh

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
11
#!/bin/bash
22

3-
docker run -d -e LOG_LEVEL=Info -e AUTH_USER=user -e AUTH_PASSWORD=password -p 8888:8888 docker.io/kalaksi/tinyproxy:1.7
3+
docker run -d \
4+
-e LOG_LEVEL=Info \
5+
-e AUTH_USER=user \
6+
-e AUTH_PASSWORD=password \
7+
--network=arangodb --ip=172.28.0.100 \
8+
docker.io/kalaksi/tinyproxy:1.7

test-functional/src/test-ssl/java/com/arangodb/ArangoSslTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ void httpProxy(Protocol protocol) {
5656
.protocolConfig(HttpProtocolConfig.builder()
5757
.proxyOptions(new ProxyOptions()
5858
.setType(ProxyType.HTTP)
59-
.setHost("127.0.0.1")
59+
.setHost("172.28.0.100")
6060
.setPort(8888)
6161
.setUsername("user")
6262
.setPassword("password"))

0 commit comments

Comments
 (0)
0