aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorCody Hiar <codyfh@gmail.com>2017-02-03 14:35:48 -0700
committerCody Hiar <codyfh@gmail.com>2017-02-03 14:35:48 -0700
commit4f74589a0c446dcf952f1a9e5fc421a237929e82 (patch)
tree3e312a1e592220ce34be34fcd7813e303add80a5 /Makefile
parent2c2181986223697ca0cd55fd86ece4fd167b2341 (diff)
changing path
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 12d8383..ca560ce 100644
--- a/Makefile
+++ b/Makefile
@@ -13,7 +13,7 @@ build: ## Build the base image
docker push $(IMAGENAME)
up: build ## Bring the container up
- docker run -dP -v $(CURDIR):/app --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'