diff options
author | Cody Hiar <codyfh@gmail.com> | 2019-03-12 14:35:47 +0000 |
---|---|---|
committer | Cody Hiar <codyfh@gmail.com> | 2019-03-12 14:35:47 +0000 |
commit | 7a6d92eef5e992915946b58b5818a2b65791392e (patch) | |
tree | 089744b3762087459f59722e33b423f529e132f2 /Makefile | |
parent | 12ff9f4c39e9fa79e1903b2c67ea2069f213b1be (diff) |
Revert "Update to run as non root user"
This reverts commit 12ff9f4c39e9fa79e1903b2c67ea2069f213b1be.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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' |