mirror of
https://github.com/dominikhoebert/docker-projects.git
synced 2025-06-27 16:57:05 +00:00
21 lines
473 B
YAML
21 lines
473 B
YAML
# https://github.com/sqlchat/sqlchat
|
|
|
|
# chat-based SQL client, which uses natural language to communicate with the database to implement operations such as query, modification, addition, and deletion of the database
|
|
|
|
name: sqlchat
|
|
services:
|
|
sqlchat:
|
|
container_name: sqlchat
|
|
platform: linux/amd64
|
|
environment:
|
|
- OPENAI_API_KEY=???
|
|
ports:
|
|
- 3005:3000
|
|
image: sqlchat/sqlchat
|
|
networks:
|
|
- proxy
|
|
|
|
networks:
|
|
proxy:
|
|
external: true
|