From 7a6d92eef5e992915946b58b5818a2b65791392e Mon Sep 17 00:00:00 2001 From: Cody Hiar Date: Tue, 12 Mar 2019 14:35:47 +0000 Subject: Revert "Update to run as non root user" This reverts commit 12ff9f4c39e9fa79e1903b2c67ea2069f213b1be. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 23fc47e..9d82a45 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):/src --name $(CONTAINERNAME) $(IMAGENAME) /bin/bash -c 'while true; do echo hi; sleep 1; done;' + docker run -dP -v $(CURDIR):/root/app --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