mirror of
https://github.com/gomods/athens
synced 2026-02-03 09:50:31 +00:00
41 lines
819 B
YAML
41 lines
819 B
YAML
version: '3'
|
|
services:
|
|
redis:
|
|
image: redis:alpine
|
|
command: ["redis-server", "--appendonly", "yes"]
|
|
ports:
|
|
- "6379:6379"
|
|
mongo:
|
|
image: mongo:3.7.9-jessie
|
|
ports:
|
|
- 27017:27017
|
|
minio:
|
|
image: minio/minio:latest
|
|
command: server /data
|
|
ports:
|
|
- "9001:9000"
|
|
environment:
|
|
MINIO_ACCESS_KEY: minio
|
|
MINIO_SECRET_KEY: minio123
|
|
datadog:
|
|
environment:
|
|
- DD_API_KEY=
|
|
- DD_LOG_LEVEL=trace
|
|
- DD_APM_ENABLED=true
|
|
image:
|
|
datadog/agent:latest
|
|
ports:
|
|
- 8126:8126
|
|
jaeger:
|
|
environment:
|
|
- COLLECTOR_ZIPKIN_HTTP_PORT=9441
|
|
image: jaegertracing/all-in-one:latest
|
|
ports:
|
|
- 14268:14268
|
|
- 9411:9411
|
|
- 5775:5775/udp
|
|
- 6831:6831/udp
|
|
- 6832:6832/udp
|
|
- 5778:5778
|
|
- 16686:16686
|