You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
559 B
22 lines
559 B
# Generate traffic by hitting http://localhost:8081
|
|
frontend:
|
|
image: ghcr.io/openzipkin/brave-example
|
|
entrypoint: start-frontend
|
|
ports:
|
|
- 8081:8081
|
|
depends_on:
|
|
backend:
|
|
condition: service_healthy
|
|
zipkin:
|
|
condition: service_started
|
|
# Serves the /api endpoint the frontend uses
|
|
backend:
|
|
image: ghcr.io/openzipkin/brave-example
|
|
entrypoint: start-backend
|
|
depends_on:
|
|
zipkin:
|
|
condition: service_started
|
|
zipkin:
|
|
image: openzipkin/zipkin:latest
|
|
ports:
|
|
- "9411:9411"
|
|
|