feat/queue-messages (#19)
Co-authored-by: jon brookes <marshyon@gmail.com> Reviewed-on: https://codeberg.org/headshed/share-lt/pulls/19
This commit is contained in:
parent
1a22fd156d
commit
74bc17d019
9 changed files with 88 additions and 8 deletions
22
docs/docker/docker-compose-nats.yaml
Normal file
22
docs/docker/docker-compose-nats.yaml
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
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
|
||||
Loading…
Add table
Add a link
Reference in a new issue