We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fa82f04 commit ebfaa4cCopy full SHA for ebfaa4c
2 files changed
installer/install.conf
@@ -9,7 +9,7 @@ SQLBOT_MCP_PORT=8001
9
## 是否使用外部数据库
10
SQLBOT_EXTERNAL_DB=false
11
## 数据库地址
12
-SQLBOT_DB_HOST=sqlbot-db
+SQLBOT_DB_HOST=localhost
13
## 数据库端口 (仅使用外部数据库时才生效)
14
SQLBOT_DB_PORT=5432
15
## SQLBot 数据库库名
installer/sqlbot/docker-compose.yml
@@ -8,17 +8,13 @@ services:
8
ports:
- ${SQLBOT_WEB_PORT}:8000
- ${SQLBOT_MCP_PORT}:8001
- - 5432:5432
env_file:
- conf/sqlbot.conf
volumes:
- ./data/sqlbot/excel:/opt/sqlbot/data/excel
16
- ./data/sqlbot/images:/opt/sqlbot/images
17
- ./data/sqlbot/logs:/opt/sqlbot/logs
18
- ./data/postgresql:/var/lib/postgresql/data
19
- depends_on:
20
- sqlbot-db:
21
- condition: service_healthy
22
23
networks:
24
sqlbot-network:
0 commit comments