41 lines
1.0 KiB
YAML
41 lines
1.0 KiB
YAML
version: "3.9"
|
|
services:
|
|
mongo:
|
|
image: "mongo"
|
|
restart: always
|
|
ports:
|
|
- 27017:27017
|
|
environment:
|
|
MONGO_INITDB_ROOT_USERNAME: root
|
|
MONGO_INITDB_ROOT_PASSWORD: example
|
|
|
|
mongo-express:
|
|
image: mongo-express
|
|
restart: always
|
|
ports:
|
|
- 8081:8081
|
|
environment:
|
|
ME_CONFIG_MONGODB_ADMINUSERNAME: root
|
|
ME_CONFIG_MONGODB_ADMINPASSWORD: example
|
|
ME_CONFIG_MONGODB_URL: mongodb://root:example@mongo:27017/
|
|
|
|
otel-collector:
|
|
image: otel/opentelemetry-collector:latest
|
|
container_name: otel-collector
|
|
command: ["--config=/etc/otel-collector-config.yaml"]
|
|
volumes:
|
|
- ./otel-collector-config.yaml:/etc/otel-collector-config.yaml
|
|
ports:
|
|
- "4317:4317"
|
|
depends_on:
|
|
- jaeger
|
|
|
|
jaeger:
|
|
image: jaegertracing/all-in-one:latest
|
|
container_name: jaeger
|
|
environment:
|
|
- COLLECTOR_OTLP_ENABLED=true
|
|
- COLLECTOR_OTLP_GRPC_HOST-PORT=:4317
|
|
- COLLECTOR_OTLP_GRPC_HOST_PORT=:4317
|
|
ports:
|
|
- "16686:16686" |