aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorCody Hiar <cody.hiar@investopedia.com>2016-11-04 16:50:20 -0600
committerCody Hiar <cody.hiar@investopedia.com>2016-11-04 16:50:20 -0600
commitb68608c761cc1de438a9453f51f996b2f09e4b32 (patch)
treeec2e825be4b2e652466a0b47709a599a6523e441 /Makefile
parent61db0790b4f6581df10161cfc216b3d7586e52d6 (diff)
More updates, switching to bash zsh is no t needed
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 30ab1e0..7b597fa 100644
--- a/Makefile
+++ b/Makefile
@@ -12,13 +12,13 @@ build: ## Build the base image
docker build -t thornycrackers/neovim .
up: build ## Bring the container up
- docker run -dP -v $(CURDIR):/app --name $(CONTAINERNAME) $(IMAGENAME) /bin/zsh -c 'while true; do echo hi; sleep 1; done;'
+ docker run -dP -v $(CURDIR):/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'
enter: ## Enter the running container
- docker exec -it $(CONTAINERNAME) /bin/zsh
+ docker exec -it $(CONTAINERNAME) /bin/bash
clean: ## Remove the image and any stopped containers
docker rm $(CONTAINERNAME) || echo 'No container to remove'