Skip to content

Commit

Permalink
feat(docker): Support armv8 machine
Browse files Browse the repository at this point in the history
old docker image can't support armv8, so add a new image for webserver
  • Loading branch information
S0uLHun43r authored May 30, 2024
1 parent 14e159f commit d3d8a20
Showing 1 changed file with 59 additions and 0 deletions.
59 changes: 59 additions & 0 deletions docker-compose.yml.armv8
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit d3d8a20

Please sign in to comment.