mirror of
https://github.com/hwchase17/langchain.git
synced 2025-06-19 05:13:46 +00:00
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
|