implemented NATS event bus, websocket hub upgrade, and audit log
This commit is contained in:
@@ -4,6 +4,19 @@ version: "3.9"
|
||||
# Production: docker compose -f docker-compose.prod.yml up
|
||||
|
||||
services:
|
||||
nats:
|
||||
image: nats:2-alpine
|
||||
restart: unless-stopped
|
||||
command: ["-js", "-m", "8222"]
|
||||
ports:
|
||||
- "4222:4222" # client connections
|
||||
- "8222:8222" # monitoring HTTP
|
||||
healthcheck:
|
||||
test: ["CMD", "wget", "--spider", "-q", "http://localhost:8222/healthz"]
|
||||
interval: 5s
|
||||
timeout: 5s
|
||||
retries: 10
|
||||
|
||||
postgres:
|
||||
image: postgres:18
|
||||
restart: unless-stopped
|
||||
|
||||
Reference in New Issue
Block a user