From 794b387fbde11ecfe5249993ba035d57b56aa02f Mon Sep 17 00:00:00 2001 From: Bart Reunes Date: Tue, 18 Jan 2022 16:11:40 +0100 Subject: [PATCH] Fix the port environment variable (#551) After reading a few open GitHub issues, I'm aware that it is known that the Symfony/Laravel examples as a whole are not up-to-date with the sdk code, but the docker-compose tutorial is on point. So if it's okay, I want to update it to the latest Jaeger version. https://github.com/jaegertracing/jaeger/releases/tag/v1.22.0 > --collector.zipkin.http-port is replaced by --collector.zipkin.host-port --- docs/symfony-integration.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/symfony-integration.md b/docs/symfony-integration.md index 5f33e1b2..e57f5830 100644 --- a/docs/symfony-integration.md +++ b/docs/symfony-integration.md @@ -83,7 +83,7 @@ services: jaeger: image: jaegertracing/all-in-one environment: - COLLECTOR_ZIPKIN_HTTP_PORT: 9412 + COLLECTOR_ZIPKIN_HOST_PORT: 9412 # Before version 1.22.0 use COLLECTOR_ZIPKIN_HTTP_PORT ports: - 9412:9412 - 16686:16686