fix(infra): update NATS configuration for OpenTelemetry tracing and JetStream support refactor(dapr): modify Dapr sidecar configuration to use new resources path and config file chore(docs): update deployment documentation to include observability services docs(commit-convention): establish commit message guidelines for Asepharyana Hub docs(deploy-workflow): outline CI/CD pipeline and manual deployment steps for Asepharyana Hub feat(event-driven): implement event-driven architecture patterns with Dapr and NATS docs(hub-rules): define repository structure, submodule strategy, and infrastructure patterns
26 lines
497 B
YAML
26 lines
497 B
YAML
services:
|
|
nats:
|
|
container_name: nats
|
|
image: nats:latest
|
|
restart: always
|
|
networks:
|
|
app-shared-net:
|
|
aliases:
|
|
- nats
|
|
ports:
|
|
- '4222:4222' # client connections
|
|
- '8222:8222' # HTTP monitor / health
|
|
command:
|
|
- '--config=/etc/nats/nats.conf'
|
|
volumes:
|
|
- nats_data:/data
|
|
- ../../infra/nats/nats.conf:/etc/nats/nats.conf:ro
|
|
|
|
volumes:
|
|
nats_data:
|
|
|
|
networks:
|
|
app-shared-net:
|
|
name: app-shared-net
|
|
external: true
|