share-lt/docs/docker/docker-compose-nats.yaml
jon brookes 5b0e55c4b2 feat: implement Change resource with CRUD functionality and migration
update image tags to v0.0.8 in build scripts and docker-compose files
2026-02-17 16:07:22 +00:00

22 lines
363 B
YAML

services:
nats:
image: nats:2.9.19-alpine
restart: unless-stopped
ports:
- 4222:4222
- 8222:8222
volumes:
- ./nats/nats-server.conf:/nats-server.conf
- nats-data:/opt/storage
command: ["-c", "/nats-server.conf"]
networks:
- nats
volumes:
nats-data:
driver: local
networks:
nats:
external: true