aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
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'