diff options
author | Cody Hiar <codyfh@gmail.com> | 2019-02-13 02:45:48 +0000 |
---|---|---|
committer | Cody Hiar <codyfh@gmail.com> | 2019-02-13 02:45:48 +0000 |
commit | 12ff9f4c39e9fa79e1903b2c67ea2069f213b1be (patch) | |
tree | 3807e3c978c1cb6ec71beeb28f1d8263341e6b21 /Makefile | |
parent | 4d16750bcbaa4303e9eb441ffc87dd3b81dd50c0 (diff) |
Update to run as non root user
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):/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' |