更新 Dockerfile 和新增 docker-compose.yml 文件

This commit is contained in:
2026-04-30 15:49:26 +08:00
parent 0d567644c8
commit f6c45f1ba5
4 changed files with 42 additions and 3 deletions
+18
View File
@@ -0,0 +1,18 @@
services:
tjwater-agent:
container_name: tjwater-agent
build:
context: .
dockerfile: Dockerfile
image: tjwater-agent:latest
env_file:
- .local.env
environment:
NODE_ENV: production
HOST: 0.0.0.0
PORT: 8787
DEEPSEEK_API_KEY: "sk-8941428ad9be4c789becfa8d66534aba"
TJWATER_API_BASE_URL: "http://127.0.0.1:8000"
ports:
- "8787:8787"
restart: unless-stopped