2023-05-04 18:37:00 +00:00
|
|
|
version: '3'
|
|
|
|
services:
|
|
|
|
langchain:
|
|
|
|
build:
|
2023-07-21 16:20:24 +00:00
|
|
|
dockerfile: libs/langchain/dev.Dockerfile
|
2023-06-16 22:42:14 +00:00
|
|
|
context: ..
|
2023-05-04 18:37:00 +00:00
|
|
|
volumes:
|
2023-06-16 22:42:14 +00:00
|
|
|
# Update this to wherever you want VS Code to mount the folder of your project
|
|
|
|
- ..:/workspaces:cached
|
2023-05-04 18:37:00 +00:00
|
|
|
networks:
|
|
|
|
- langchain-network
|
|
|
|
# environment:
|
|
|
|
# MONGO_ROOT_USERNAME: root
|
|
|
|
# MONGO_ROOT_PASSWORD: example123
|
|
|
|
# depends_on:
|
|
|
|
# - mongo
|
|
|
|
# mongo:
|
|
|
|
# image: mongo
|
|
|
|
# restart: unless-stopped
|
|
|
|
# environment:
|
|
|
|
# MONGO_INITDB_ROOT_USERNAME: root
|
|
|
|
# MONGO_INITDB_ROOT_PASSWORD: example123
|
|
|
|
# ports:
|
|
|
|
# - "27017:27017"
|
|
|
|
# networks:
|
|
|
|
# - langchain-network
|
|
|
|
|
|
|
|
networks:
|
|
|
|
langchain-network:
|
|
|
|
driver: bridge
|
|
|
|
|
|
|
|
|