mirror of
https://github.com/langchain-ai/langsmith-sdk-christopher.git
synced 2026-07-19 20:33:32 -04:00
68812b258c
Updates terminology and packaging to push to `langsmith` (I think that makes sense vs. langsmith-sdk?) Updates from `LangChainPlusClient` to `Client` Updates CLI command to use `langsmith start/logs/etc.`
44 lines
1.0 KiB
YAML
44 lines
1.0 KiB
YAML
version: '3'
|
|
services:
|
|
langchain-frontend:
|
|
image: langchain/${_LANGCHAINPLUS_IMAGE_PREFIX-}langchainplus-frontend:latest
|
|
ports:
|
|
- 80:80
|
|
environment:
|
|
- REACT_APP_BACKEND_URL=http://localhost:1984
|
|
depends_on:
|
|
- langchain-backend
|
|
volumes:
|
|
- ./conf/nginx.conf:/etc/nginx/default.conf:ro
|
|
langchain-backend:
|
|
image: langchain/${_LANGCHAINPLUS_IMAGE_PREFIX-}langchainplus-backend:latest
|
|
environment:
|
|
- PORT=1984
|
|
- LANGCHAIN_ENV=local_docker
|
|
- LOG_LEVEL=warning
|
|
- OPENAI_API_KEY=${OPENAI_API_KEY}
|
|
ports:
|
|
- 1984:1984
|
|
depends_on:
|
|
- langchain-db
|
|
langchain-db:
|
|
image: postgres:14.1
|
|
command:
|
|
[
|
|
"postgres",
|
|
"-c",
|
|
"log_min_messages=WARNING",
|
|
"-c",
|
|
"client_min_messages=WARNING"
|
|
]
|
|
environment:
|
|
- POSTGRES_PASSWORD=postgres
|
|
- POSTGRES_USER=postgres
|
|
- POSTGRES_DB=postgres
|
|
volumes:
|
|
- langchain-db-data:/var/lib/postgresql/data
|
|
ports:
|
|
- 5433:5432
|
|
volumes:
|
|
langchain-db-data:
|