Tristan Sloughter bcf5f600d5
add roll dice example in Erlang with Elli (#177)
* add roll dice example in Erlang with Elli

* cleanup index page template formatting

* fix index/1 type spec

* remove index.js which gets compiled by npm

* roll dice: use 127.0.0.1 for node name to work for everyone
2023-10-02 08:00:45 -06:00

24 lines
536 B
YAML

version: "3"
services:
otel:
image: otel/opentelemetry-collector-contrib:0.76.1
command: ["--config=/conf/otel-collector-config.yaml"]
privileged: true
ports:
- 4317:4317
- 4318:4318
- 55679:55679
volumes:
- ./otel-collector-config.yaml:/conf/otel-collector-config.yaml
links:
- jaeger-all-in-one
jaeger-all-in-one:
image: jaegertracing/all-in-one:1.45
restart: always
environment:
COLLECTOR_OTLP_ENABLED: true
ports:
- "16686:16686"
- "4317"