Files
langsmith-sdk-christopher/python/langsmith/cli/docker-compose.yaml
T
Zander Chase 68812b258c Change to LangSmith Package (#62)
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.`
2023-06-26 16:08:39 -07:00

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: