mirror of
https://github.com/hwchase17/langchain
synced 2024-10-31 15:20:26 +00:00
d7c26c89b2
Minor file rename.
13 lines
201 B
Makefile
13 lines
201 B
Makefile
# Makefile
|
|
|
|
build_graphdb:
|
|
docker build --tag graphdb ./graphdb
|
|
|
|
start_graphdb:
|
|
docker-compose up -d graphdb
|
|
|
|
down:
|
|
docker-compose down -v --remove-orphans
|
|
|
|
.PHONY: build_graphdb start_graphdb down
|