ci: rename makefile -> Makefile in docker (#17648)

Minor file rename.
This commit is contained in:
Eugene Yurtsev
2024-02-16 16:59:18 -05:00
committed by GitHub
parent 8d4547ae97
commit d7c26c89b2

12
docker/Makefile Normal file
View File

@@ -0,0 +1,12 @@
# 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