Files
railway_cloud/docker-compose.yml
2025-11-29 16:02:57 +08:00

36 lines
833 B
YAML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
version: '3.8'
services:
# 铁路项目管理系统 - FastAPI应用
tielu-app:
build: .
container_name: tielu-railway-app
ports:
- "3002:8000"
extra_hosts:
- "host.docker.internal:host-gateway"
volumes:
# 日志文件映射
- ./logs:/app/logs
# 配置文件映射
- ./.env:/app/.env:ro
restart: unless-stopped
# 资源限制
deploy:
resources:
limits:
# 内存限制8GB充分利用94GB内存
memory: 10G
# CPU限制12个CPU核心32核心服务器使用约1/3
cpus: '12.0'
reservations:
# 预留内存2GB
memory: 2G
# 预留CPU4个核心
cpus: '4.0'
# 环境变量
environment:
# 生产模式
- APP_DEBUG=false