Remove docker-run

Docker-run was only useful in very specific projects. Projects should
either define their own "run" in their Makefile, add a
docker-compose.yaml, or specify instructions in the README.
This commit is contained in:
ducoterra
2021-10-31 20:59:29 -04:00
parent 74a4a4e77f
commit ba12c923ba

View File

@@ -20,7 +20,3 @@ build:
push:
docker buildx build --platform linux/amd64 --push . -t $(IMAGE)
@docker buildx build --platform linux/amd64 --push . -t $(IMAGE_LATEST)
.PHONY: run
run:
docker run -it -v $(PWD):/mc_data $(IMAGE) bash