Co-authored-by: jon brookes <marshyon@gmail.com> Reviewed-on: https://codeberg.org/headshed/share-lt/pulls/19
22 lines
No EOL
362 B
YAML
22 lines
No EOL
362 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 |