From 9581902ac50b726f6339449395f7f5b06eac591b Mon Sep 17 00:00:00 2001 From: Deepika Upadhyay Date: Wed, 21 Jul 2021 20:27:46 +0530 Subject: [PATCH] vstart.sh: use quay to pull jaeger instead of docker In servers like the ones available in sepia labs, users might hit rate limiting for docker pull, it is better to use quay image to avoid this issue. https://blog.container-solutions.com/dealing-with-docker-hub-rate-limiting Signed-off-by: Deepika Upadhyay --- src/vstart.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/vstart.sh b/src/vstart.sh index 3535ddf07db..413d48d2f02 100755 --- a/src/vstart.sh +++ b/src/vstart.sh @@ -1642,10 +1642,9 @@ if [ $with_jaeger -eq 1 ]; then -p 16686:16686 \ -p 14268:14268 \ -p 14250:14250 \ - jaegertracing/all-in-one:1.20 + quay.io/jaegertracing/all-in-one fi - debug echo "vstart cluster complete. Use stop.sh to stop. See out/* (e.g. 'tail -f out/????') for debug output." echo "" -- 2.39.5