40 lines
805 B
YAML
40 lines
805 B
YAML
networks:
|
|
default:
|
|
name: eigen-monitoring
|
|
external: true
|
|
|
|
services:
|
|
memcached:
|
|
image: bitnami/memcached:latest
|
|
container_name: memcached
|
|
ports:
|
|
- "11211:11211"
|
|
environment:
|
|
- MEMCACHED_CACHE_SIZE=128
|
|
- MEMCACHED_THREADS=4
|
|
|
|
init-tempo:
|
|
image: &tempoImage grafana/tempo:latest
|
|
user: root
|
|
entrypoint:
|
|
- "chown"
|
|
- "10001:10001"
|
|
- "/var/tempo"
|
|
volumes:
|
|
- ./.data:/var/tempo
|
|
|
|
tempo:
|
|
image: *tempoImage
|
|
command: ["-config.file=/etc/tempo.yaml"]
|
|
volumes:
|
|
- ./tempo.yaml:/etc/tempo.yaml
|
|
- ./.data:/var/tempo
|
|
ports:
|
|
- "14268:14268" # jaeger ingest
|
|
- "3200:3200" # tempo
|
|
- "9095:9095" # tempo grpc
|
|
- "9411:9411" # zipkin
|
|
depends_on:
|
|
- init-tempo
|
|
- memcached
|