Files
langsmith-sdk-christopher/python/langsmith/cli/docker-compose.beta.yaml
T
Erick Friis c2e46c8796 Add hub to sdk (#161)
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>
2023-08-22 01:18:31 -07:00

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: