From b68608c761cc1de438a9453f51f996b2f09e4b32 Mon Sep 17 00:00:00 2001 From: Cody Hiar Date: Fri, 4 Nov 2016 16:50:20 -0600 Subject: More updates, switching to bash zsh is no t needed --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Makefile') 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' -- cgit v1.2.3