aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorCody Hiar <codyfh@gmail.com>2019-03-12 14:35:47 +0000
committerCody Hiar <codyfh@gmail.com>2019-03-12 14:35:47 +0000
commit7a6d92eef5e992915946b58b5818a2b65791392e (patch)
tree089744b3762087459f59722e33b423f529e132f2 /Makefile
parent12ff9f4c39e9fa79e1903b2c67ea2069f213b1be (diff)
Revert "Update to run as non root user"
This reverts commit 12ff9f4c39e9fa79e1903b2c67ea2069f213b1be.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
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'