This commit is contained in:
欧神 2025-07-07 13:59:30 +08:00 committed by GitHub
commit 09c4ded6da
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

59
docker-compose.yml.armv8 Normal file
View File

@ -0,0 +1,59 @@
version: '3.10'
services:
db:
image: mysql/mysql-server
environment:
MYSQL_USER: 'user'
MYSQL_PASSWORD: 'password'
MYSQL_ROOT_PASSWORD: 'linaro123'
ports:
- 3306:3306
volumes:
- dbgpt-myql-db:/var/lib/mysql
- ./docker/examples/my.cnf:/etc/my.cnf
- ./docker/examples/sqls:/docker-entrypoint-initdb.d
- ./assets/schema/dbgpt.sql:/docker-entrypoint-initdb.d/dbgpt.sql
restart: unless-stopped
networks:
- dbgptnet
webserver:
image: tmsxb/dbgpt:v1.0
working_dir: /DB-GPT
command: python dbgpt/app/dbgpt_server.py
environment:
- LOCAL_DB_HOST=db
- LOCAL_DB_PASSWORD=linaro123
- ALLOWLISTED_PLUGINS=db_dashboard
- LLM_MODEL=text2vec-large-chinese
depends_on:
- db
volumes:
- /data/DB-GPT/:/DB-GPT
# Please modify it to your own model directory
- /data/DB-GPT/models:/app/models
- dbgpt-data:/app/pilot/data
- dbgpt-message:/app/pilot/message
env_file:
- .env.template
ports:
- 5670:5670/tcp
# webserver may be failed, it must wait all sqls in /docker-entrypoint-initdb.d execute finish.
restart: unless-stopped
networks:
- dbgptnet
ipc: host
#deploy:
# resources:
# reservations:
# devices:
# - driver: nvidia
# capabilities: [gpu]
volumes:
dbgpt-myql-db:
dbgpt-data:
dbgpt-message:
networks:
dbgptnet:
driver: bridge
name: dbgptnet