Files
SQLBot/installer/sqlbot/docker-compose.yml

21 lines
525 B
YAML
Raw Normal View History

2025-09-08 16:35:23 +08:00
services:
sqlbot:
image: registry.cn-qingdao.aliyuncs.com/dataease/sqlbot:SQLBOT_TAG
container_name: sqlbot
restart: always
networks:
- sqlbot-network
ports:
- ${SQLBOT_WEB_PORT}:8000
- ${SQLBOT_MCP_PORT}:8001
env_file:
- conf/sqlbot.conf
volumes:
- ./data/sqlbot/excel:/opt/sqlbot/data/excel
- ./data/sqlbot/images:/opt/sqlbot/images
- ./data/sqlbot/logs:/opt/sqlbot/logs
- ./data/postgresql:/var/lib/postgresql/data
networks:
sqlbot-network: