mirror of
https://github.com/hwchase17/langchain
synced 2024-11-08 07:10:35 +00:00
44db4412c0
This PR adds graphdb to the docker compose so it can be used in integration tests. Co-authored-by: KARTHEEK YAKKALA <kartheekyakkala.se@gmail.com>
22 lines
548 B
YAML
22 lines
548 B
YAML
# docker-compose to make it easier to spin up integration tests.
|
|
# Services should use NON standard ports to avoid collision with
|
|
version: "3"
|
|
name: langchain-tests
|
|
|
|
services:
|
|
redis:
|
|
image: redis/redis-stack-server:latest
|
|
# We use non standard ports since
|
|
# these instances are used for testing
|
|
# and users may already have existing
|
|
# redis instances set up locally
|
|
# for other projects
|
|
ports:
|
|
- "6020:6379"
|
|
volumes:
|
|
- ./redis-volume:/data
|
|
graphdb:
|
|
image: graphdb
|
|
ports:
|
|
- "6021:7200"
|