Skip to content
This repository has been archived by the owner on Sep 10, 2024. It is now read-only.

Commit

Permalink
add basic docker-compose.yaml
Browse files Browse the repository at this point in the history
Signed-off-by: fktkrt <[email protected]>
  • Loading branch information
fktkrt committed Oct 26, 2020
1 parent 42cac8a commit 6365093
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions infrastructure/docker-compose.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
version: '3'

services:
jaeger:
image: jaegertracing/all-in-one:latest
ports:
- '16686:16686'

hotrod:
image: jaegertracing/example-hotrod:latest
ports:
- '8080:8080'
environment:
- JAEGER_ENDPOINT=http://jaeger:14268/api/traces
links:
- 'jaeger'

jaeger-analytics-java:
image: quay.io/jaegertracing/jaeger-analytics-java:latest
ports:
- '8888:8888'
- '4041:4040'
- '9001:9001'
environment:
- JUPYTER_ENABLE_LAB=yes
links:
- 'jaeger'

0 comments on commit 6365093

Please sign in to comment.