ci[minor] : Added graphdb in docker compose for integration tests (#17510)

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>
This commit is contained in:
Kartheek Yakkala
2024-02-15 22:03:22 -06:00
committed by GitHub
parent 0835ebad70
commit 44db4412c0
5 changed files with 95 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
FROM ontotext/graphdb:10.5.1
RUN mkdir -p /opt/graphdb/dist/data/repositories/langchain
COPY config.ttl /opt/graphdb/dist/data/repositories/langchain/
COPY graphdb_create.sh /run.sh
ENTRYPOINT bash /run.sh