26 lines
654 B
YAML
26 lines
654 B
YAML
version: '3.7'
|
|
services:
|
|
php:
|
|
image: ghcr.io/open-telemetry/opentelemetry-php/opentelemetry-php-base:${PHP_VERSION:-7.4}
|
|
volumes:
|
|
- ./:/usr/src/myapp
|
|
user: "${PHP_USER}:root"
|
|
env_file:
|
|
- .env
|
|
zipkin:
|
|
image: openzipkin/zipkin-slim
|
|
ports:
|
|
- 9411:9411
|
|
jaeger:
|
|
image: jaegertracing/all-in-one
|
|
environment:
|
|
COLLECTOR_ZIPKIN_HOST_PORT: 9412
|
|
ports:
|
|
- 9412:9412
|
|
- 16686:16686
|
|
collector:
|
|
image: otel/opentelemetry-collector-contrib
|
|
command: [ "--config=/etc/otel-collector-config.yml" ]
|
|
volumes:
|
|
- ./files/collector/otel-collector-config.yml:/etc/otel-collector-config.yml
|