dev cicd + tron + docs
This commit is contained in:
39
ci/prod/compose/billing_documents.yml
Normal file
39
ci/prod/compose/billing_documents.yml
Normal file
@@ -0,0 +1,39 @@
|
||||
# Compose v2 - Billing documents
|
||||
|
||||
x-common-env: &common-env
|
||||
env_file:
|
||||
- ../env/.env.runtime
|
||||
- ../env/.env.version
|
||||
|
||||
networks:
|
||||
sendico-net:
|
||||
external: true
|
||||
name: sendico-net
|
||||
|
||||
services:
|
||||
sendico_billing_documents:
|
||||
<<: *common-env
|
||||
container_name: sendico-billing-documents
|
||||
restart: unless-stopped
|
||||
image: ${REGISTRY_URL}/billing/documents:${APP_V}
|
||||
pull_policy: always
|
||||
environment:
|
||||
DOCUMENTS_GRPC_PORT: ${DOCUMENTS_GRPC_PORT}
|
||||
DOCUMENTS_METRICS_PORT: ${DOCUMENTS_METRICS_PORT}
|
||||
NATS_URL: ${NATS_URL}
|
||||
NATS_HOST: ${NATS_HOST}
|
||||
NATS_PORT: ${NATS_PORT}
|
||||
NATS_USER: ${NATS_USER}
|
||||
NATS_PASSWORD: ${NATS_PASSWORD}
|
||||
command: ["--config.file", "/app/config.yml"]
|
||||
ports:
|
||||
- "0.0.0.0:${DOCUMENTS_GRPC_PORT}:50061"
|
||||
- "0.0.0.0:${DOCUMENTS_METRICS_PORT}:${DOCUMENTS_METRICS_PORT}"
|
||||
healthcheck:
|
||||
test: ["CMD-SHELL","wget -qO- http://localhost:${DOCUMENTS_METRICS_PORT}/health | grep -q '\"status\":\"ok\"'"]
|
||||
interval: 30s
|
||||
timeout: 10s
|
||||
retries: 3
|
||||
start_period: 60s
|
||||
networks:
|
||||
- sendico-net
|
||||
Reference in New Issue
Block a user