We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f7d1548 commit 469c3e6Copy full SHA for 469c3e6
2 files changed
.drone/drone.yaml .drone/drone.yml.drone/drone.yaml renamed to .drone/drone.yml
contrib/ci/test.sh
@@ -17,7 +17,10 @@ MINIO_JOB=$(docker run -d --name minio \
17
sleep 5
18
docker logs "${MINIO_JOB}"
19
20
-JOB=$(docker run -d --link minio:minio \
+MINIO_IP=$(docker inspect --format "{{ .NetworkSettings.IPAddress }}" "${MINIO_JOB}")
21
+
22
+JOB=$(docker run --add-host minio:"${MINIO_IP}" \
23
+ -d \
24
-e DRYCC_MINIO_SERVICE_HOST=minio \
25
-e DRYCC_MINIO_SERVICE_PORT=9000 \
26
-v "${CURRENT_DIR}"/tmp/aws-user:/var/run/secrets/drycc/objectstore/creds \
0 commit comments