initial commit

This commit is contained in:
gwg313 2026-01-15 12:21:18 -05:00
commit 976b4f88cc
Signed by: gwg313
GPG key ID: 60FF63B4826B7400
11 changed files with 249 additions and 0 deletions

View file

@ -0,0 +1,17 @@
version: "3.8"
services:
nats:
image: nats:2.10
ports:
- "4222:4222"
subscriber:
build: ./subscriber
depends_on:
- nats
publisher:
build: ./publisher
depends_on:
- nats