"ts/webui/src/static/style/trialsDetail.scss" did not exist on "bb5534ca995390c57956fe9f4d1785a0a9260732"
dbgpt-oceanbase-docker-compose.yml 897 Bytes
Newer Older
chenzk's avatar
v1.0  
chenzk committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
version: '3.8'

services:
  oceanbase:
    image: oceanbase/oceanbase-ce:vector
    ports: 
      - 2881:2881
    networks:
      - dbgptnet
  dbgpt:
    image: eosphorosai/dbgpt-allinone
    environment:
      - DBGPT_WEBSERVER_PORT=12345
      - VECTOR_STORE_TYPE=OceanBase
      - OB_HOST=oceanbase
      - OB_HOST=127.0.0.1
      - OB_PORT=2881
      - OB_USER=root@test
      - OB_DATABASE=test
      - LOCAL_DB_TYPE=sqlite
      - LLM_MODEL=tongyi_proxyllm
      - PROXYLLM_BACKEND=qwen-plus
      - EMBEDDING_MODEL=text2vec
      # your api key
      # - TONGYI_PROXY_API_KEY={your-api-key}
      - LANGUAGE=zh
      # - OB_ENABLE_NORMALIZE_VECTOR=True
    ports:
      - 3306:3306
      - 12345:12345
    volumes:
      # - {your-ob-sql-dbg-log-dir}:/sql_log
      # - {your-model-dir}:/app/models
    networks:
      - dbgptnet

networks:
  dbgptnet:
    driver: bridge
    name: dbgptnet