mirror of
https://github.com/FlourishingWorld/hk4e.git
synced 2026-02-04 18:22:26 +08:00
20 lines
381 B
YAML
20 lines
381 B
YAML
version: '3'
|
|
services:
|
|
mongo:
|
|
restart: always
|
|
image: mongo:5.0.5
|
|
container_name: mongo
|
|
ports:
|
|
- "27017:27017/tcp"
|
|
environment:
|
|
TZ: Asia/Shanghai
|
|
volumes:
|
|
- /etc/localtime:/etc/localtime
|
|
- /etc/timezone:/etc/timezone
|
|
- ./data:/data/db
|
|
deploy:
|
|
resources:
|
|
limits:
|
|
cpus: '1.00'
|
|
memory: 512M
|