mirror of
https://github.com/langchain-ai/langsmith-sdk-christopher.git
synced 2026-07-19 12:24:38 -04:00
c2e46c8796
Adds the hub backend to the dockerfile Also changes the `--dev` flag to point to `dev-` images instead of `rc-` images And adding a `--beta` flag to point to `rc-` images moving forward Currently, hub is only built with the dev images. --------- Co-authored-by: William Fu-Hinthorn <13333726+hinthornw@users.noreply.github.com>
19 lines
462 B
YAML
19 lines
462 B
YAML
version: '3'
|
|
services:
|
|
# TODO: Move to the regular docker-compose.yaml once deployed
|
|
langchain-hub:
|
|
image: langchain/${_LANGSMITH_IMAGE_PREFIX-}langchainhub-backend:latest
|
|
environment:
|
|
- PORT=1985
|
|
- LANGCHAIN_ENV=local_docker
|
|
- LOG_LEVEL=warning
|
|
ports:
|
|
- 1985:1985
|
|
depends_on:
|
|
- langchain-db
|
|
langchain-db:
|
|
volumes:
|
|
- rc-langchain-db-data:/var/lib/postgresql/data
|
|
volumes:
|
|
rc-langchain-db-data:
|