feat: added compose for development environment

This commit is contained in:
SoXX 2024-12-11 16:00:31 +01:00
parent 304581cb80
commit fc5cf0f0d0

View File

@ -0,0 +1,30 @@
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