From 3dc83715942f61fb01090fddc48f66736dccdc1c Mon Sep 17 00:00:00 2001 From: Ian Adam Naval Date: Sun, 29 Sep 2019 17:17:58 -0400 Subject: [PATCH] Add --rm to Makefile --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 2cfbe60..c5032f5 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ default: run run: build - docker run -v $(CURDIR):/app -p "5000:5000" --env-file=.env ianonavy/autopilot + docker run --rm -v $(CURDIR):/app -p "5000:5000" --env-file=.env ianonavy/autopilot build: Dockerfile docker build -t ianonavy/autopilot .