17 lines
310 B
YAML
17 lines
310 B
YAML
# 简化的 MongoDB 配置
|
|
version: '3.8'
|
|
|
|
services:
|
|
mongo-simple:
|
|
image: mongo:4
|
|
container_name: tailchat-mongo-simple
|
|
restart: unless-stopped
|
|
ports:
|
|
- "27017:27017"
|
|
networks:
|
|
- tailchat-sales_tailchat-network
|
|
|
|
networks:
|
|
tailchat-sales_tailchat-network:
|
|
external: true
|