23 lines
618 B
YAML
23 lines
618 B
YAML
services:
|
|
dbgpt:
|
|
image: docker.citory.tech/mirror/eosphorosai/dbgpt-openai:latest
|
|
container_name: dbgpt
|
|
environment:
|
|
- SILICONFLOW_API_KEY=sk-tlsrjadpcrvebqdmptabfrxznnuiimsawowtpnzbokpanfcx
|
|
volumes:
|
|
- dbgpt-data:/app/pilot/data
|
|
- dbgpt-message:/app/pilot/message
|
|
ports:
|
|
- 10506:5670/tcp
|
|
# webserver may be failed, it must wait all sqls in /docker-entrypoint-initdb.d execute finish.
|
|
restart: unless-stopped
|
|
ipc: host
|
|
tty: true
|
|
stdin_open: true
|
|
volumes:
|
|
dbgpt-data:
|
|
dbgpt-message:
|
|
x-dockge:
|
|
urls:
|
|
- http://local.citory.tech:10506
|
|
networks: {} |