Files
DB-GPT/docs/getting_started/install/docker_compose/docker_compose.md

720 B

Docker Compose

Run with docker compose

$ docker compose up -d

Output should look something like the following:

[+] Building 0.0s (0/0)
[+] Running 2/2
 ✔ Container db-gpt-db-1         Started                                                                                                                                                                                          0.4s
 ✔ Container db-gpt-webserver-1  Started

You can see log with command:

$ docker logs db-gpt-webserver-1 -f

Open http://localhost:5000 with your browser to see the product.

You can open docker-compose.yml in the project root directory to see more details.