inspection-host-computer/docker-compose.yml

17 lines
476 B
YAML
Raw Normal View History

2026-06-26 10:51:01 +08:00
version: '3.8'
services:
app:
build:
context: .
dockerfile: Dockerfile
container_name: inspection-host-computer
ports:
- "3000:3000" # 映射端口
environment:
- NODE_ENV=production
2026-06-29 11:17:08 +08:00
- VITE_SERVICE_PORT=3000 # 传给 Express 的环境变量
2026-06-26 10:51:01 +08:00
restart: unless-stopped # 容器意外停止后自动重启
# 如果需要挂载日志或配置,可以加 volumes
# volumes:
# - ./logs:/app/logs