services: letta_server: environment: - ENV_NAME=${ENV_NAME} # optional service name - OTEL_EXPORTER_OTLP_ENDPOINT=http://otel-collector:4317 otel-collector: image: otel/opentelemetry-collector-contrib:0.92.0 command: ["--config=/etc/otel-collector-config.yaml"] volumes: - ./otel-collector-config.yaml:/etc/otel-collector-config.yaml environment: - CLICKHOUSE_ENDPOINT=${CLICKHOUSE_ENDPOINT} - CLICKHOUSE_DATABASE=${CLICKHOUSE_DATABASE} - CLICKHOUSE_USER=${CLICKHOUSE_USER} - CLICKHOUSE_PASSWORD=${CLICKHOUSE_PASSWORD} ports: - "4317:4317" - "4318:4318"