-
Notifications
You must be signed in to change notification settings - Fork 4
Added jeager from docker hub #10
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Added jeager from docker hub #10
Conversation
docker-compose-services.yml
Outdated
- "traefik.http.routers.jaeger.middlewares=test-things-auth" | ||
- "traefik.http.services.jaeger.loadbalancer.server.port=16686" | ||
ports: | ||
- "16686:16686" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
these ports are not open in our server
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oh I see, I put that port because that is the default port for running jeager. Will change it then
docker-compose-services.yml
Outdated
- "traefik.http.routers.jaeger.rule=Host(`jaeger.${STACK_HOSTNAME}`)" | ||
- "traefik.http.routers.jaeger.service=jaeger" | ||
- "traefik.http.routers.jaeger.middlewares=test-things-auth" | ||
- "traefik.http.services.jaeger.loadbalancer.server.port=16686" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
these ports should be parametrized via env variables, especially if you are using it multiple times
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ok
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Otherwise works :)
Added jeager from docker hub to docker-compose-services.