From ba12c923ba6644e8aadcc18b33feaacf61a8fb43 Mon Sep 17 00:00:00 2001 From: ducoterra Date: Sun, 31 Oct 2021 20:59:29 -0400 Subject: [PATCH] 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. --- make/docker.makefile | 4 ---- 1 file changed, 4 deletions(-) diff --git a/make/docker.makefile b/make/docker.makefile index 4af850f..fc07142 100644 --- a/make/docker.makefile +++ b/make/docker.makefile @@ -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