fixed port exposure

This commit is contained in:
Stephan D
2026-01-31 20:16:01 +01:00
parent fcd86816c6
commit 8469d93cee
7 changed files with 9 additions and 9 deletions

View File

@@ -55,14 +55,14 @@ services:
command: ["--config.file", "/app/config.yml"]
ports:
- "0.0.0.0:${TRON_GATEWAY_GRPC_PORT}:50071"
- "0.0.0.0:${TRON_GATEWAY_METRICS_PORT}:9407"
- "0.0.0.0:${TRON_GATEWAY_METRICS_PORT}:9408"
volumes:
- tron-gateway-vault-run:/run/vault:ro
depends_on:
sendico_tron_gateway_vault_agent:
condition: service_healthy
healthcheck:
test: ["CMD-SHELL","wget -qO- http://localhost:9407/health | grep -q '\"status\":\"ok\"'"]
test: ["CMD-SHELL","wget -qO- http://localhost:9408/health | grep -q '\"status\":\"ok\"'"]
interval: 30s
timeout: 10s
retries: 3