I'm new to docker/jaeger/go. I followed the instruction carefully
. On my Windows & machine, I installed docker toolbox(not the standard docker which requires Windows 10). Then I started Jaeger all-in-one in docker by the command
$ docker run -d --name jaeger \
-e COLLECTOR_ZIPKIN_HTTP_PORT=9411 \
-p 5775:5775/udp \
-p 6831:6831/udp \
-p 6832:6832/udp \
-p 5778:5778 \
-p 16686:16686 \
-p 14268:14268 \
-p 9411:9411 \
jaegertracing/all-in-one:latest
The jaeger container was up. But when I used netstat -a to check the tcp and udp ports specified by the command line, I found those ports were not under listening.
So there was no way to open the UI by navigating http://localhost:16686. I have no idea what's going on. I guess go might not be a part of docker toolbox, so I should install it first?
Any help are appreciated!