From 12ff9f4c39e9fa79e1903b2c67ea2069f213b1be Mon Sep 17 00:00:00 2001 From: Cody Hiar Date: Wed, 13 Feb 2019 02:45:48 +0000 Subject: Update to run as non root user --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 9d82a45..23fc47e 100644 --- a/Makefile +++ b/Makefile @@ -19,7 +19,7 @@ build-nocache: ## Build the base image with no cache docker build --no-cache=true -t thornycrackers/neovim . up: build ## Bring the container up - docker run -dP -v $(CURDIR):/root/app --name $(CONTAINERNAME) $(IMAGENAME) /bin/bash -c 'while true; do echo hi; sleep 1; done;' + docker run -dP -v $(CURDIR):/src --name $(CONTAINERNAME) $(IMAGENAME) /bin/bash -c 'while true; do echo hi; sleep 1; done;' down: ## Stop the container docker stop $(CONTAINERNAME) || echo 'No container to stop' -- cgit v1.2.3