diff options
author | Cody Hiar <codyfh@gmail.com> | 2017-02-03 14:35:48 -0700 |
---|---|---|
committer | Cody Hiar <codyfh@gmail.com> | 2017-02-03 14:35:48 -0700 |
commit | 4f74589a0c446dcf952f1a9e5fc421a237929e82 (patch) | |
tree | 3e312a1e592220ce34be34fcd7813e303add80a5 /Makefile | |
parent | 2c2181986223697ca0cd55fd86ece4fd167b2341 (diff) |
changing path
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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' |