mirror of
https://github.com/FlourishingWorld/hk4e.git
synced 2026-02-04 18:22:26 +08:00
22 lines
455 B
YAML
22 lines
455 B
YAML
version: '3'
|
|
services:
|
|
nats:
|
|
restart: always
|
|
image: nats:2.7.3
|
|
container_name: nats
|
|
ports:
|
|
- "4224:4222/tcp"
|
|
- "8224:8222/tcp"
|
|
environment:
|
|
TZ: Asia/Shanghai
|
|
volumes:
|
|
- /etc/localtime:/etc/localtime
|
|
- /etc/timezone:/etc/timezone
|
|
- ./conf/nats-server.conf:/nats-server.conf
|
|
- ./data:/nats/storage
|
|
deploy:
|
|
resources:
|
|
limits:
|
|
cpus: '1.00'
|
|
memory: 512M
|