Files
ThinkFlowAI/docker-compose.yml
史悦 4186c4289b build: 添加 Docker 相关配置文件
添加 Dockerfile、docker-compose.yml 和 .dockerignore 文件,用于容器化部署开发环境
2026-01-22 16:18:05 +08:00

17 lines
289 B
YAML

version: '3.8'
services:
thinkflow:
build:
context: .
dockerfile: Dockerfile
container_name: thinkflow-app
ports:
- "5173:5173"
volumes:
- .:/app
- /app/node_modules
environment:
- NODE_ENV=development
restart: unless-stopped