25 lines
519 B
YAML
25 lines
519 B
YAML
services:
|
|
database:
|
|
image: clickhouse/clickhouse-server:latest
|
|
ports:
|
|
- 8123:8123
|
|
- 9000:9000
|
|
ulimits:
|
|
nofile:
|
|
soft: 262144
|
|
hard: 262144
|
|
environment:
|
|
CLICKHOUSE_USER: default
|
|
CLICKHOUSE_PASSWORD: password
|
|
CLICKHOUSE_DB: default
|
|
jaeger:
|
|
image: jaegertracing/jaeger:${JAEGER_VERSION:-2.6.0}
|
|
ports:
|
|
- "16686:16686"
|
|
- "4318:4318"
|
|
- "5778:5778"
|
|
- "4317:4317"
|
|
- "9411:9411"
|
|
environment:
|
|
- LOG_LEVEL=debug
|