24 lines
592 B
YAML
24 lines
592 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"
|
|
environment:
|
|
XDEBUG_MODE: ${XDEBUG_MODE:-off}
|
|
XDEBUG_CONFIG: ${XDEBUG_CONFIG:-''}
|
|
PHP_IDE_CONFIG: ${PHP_IDE_CONFIG:-''}
|
|
#PHP_CS_FIXER_IGNORE_ENV: "true"
|
|
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
|