otter-cage/deployments/docker-compose.yaml

31 lines
721 B
YAML
Raw Permalink Normal View History

version: '3.7'
services:
vault:
image: hashicorp/vault
command: server
cap_add:
- IPC_LOCK
environment:
- 'VAULT_LOCAL_CONFIG={"storage": {"file": {"path": "/vault/file"}},
"listener": [{"tcp": { "address": "0.0.0.0:8200", "tls_disable":
true}}], "default_lease_ttl": "168h", "max_lease_ttl": "720h",
"ui": true}'
ports:
- 8200:8200
jaeger:
image: jaegertracing/all-in-one
environment:
- COLLECTOR_ZIPKIN_HOST_PORT=:9411
ports:
- 6831:6831/udp
- 6832:6832/udp
- 5778:5778
- 16686:16686
- 4317:4317
- 4318:4318
- 14250:14250
- 14268:14268
- 14269:14269
- 9411:9411