diff options
author | Cody Hiar <cody.hiar@investopedia.com> | 2016-11-04 16:50:20 -0600 |
---|---|---|
committer | Cody Hiar <cody.hiar@investopedia.com> | 2016-11-04 16:50:20 -0600 |
commit | b68608c761cc1de438a9453f51f996b2f09e4b32 (patch) | |
tree | ec2e825be4b2e652466a0b47709a599a6523e441 /Makefile | |
parent | 61db0790b4f6581df10161cfc216b3d7586e52d6 (diff) |
More updates, switching to bash zsh is no t needed
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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' |