-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
old docker image can't support armv8, so add a new image for webserver
- Loading branch information
1 parent
14e159f
commit d3d8a20
Showing
1 changed file
with
59 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |