diff options
-rw-r--r-- | Dockerfile | 5 | ||||
-rw-r--r-- | Makefile | 29 |
2 files changed, 24 insertions, 10 deletions
@@ -4,6 +4,9 @@ FROM alpine:3.3 RUN echo "http://dl-4.alpinelinux.org/alpine/edge/testing" >> /etc/apk/repositories RUN echo "http://dl-4.alpinelinux.org/alpine/edge/community" >> /etc/apk/repositories +# Makes using the terminal in container usable +ENV TERM xterm-256color + # Install all the needed packages RUN apk add --no-cache \ # My Stuff @@ -79,6 +82,6 @@ RUN nvim +UpdateRemotePlugins +qa ADD zshrc /root/.zshrc -WORKDIR /work +WORKDIR /app CMD ["/bin/zsh"] @@ -1,15 +1,26 @@ +.PHONY: build + +CONTAINERNAME=nvim-env +IMAGENAME=thornycrackers/neovim + help: @grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}' -build: ## Build the image - clear - make build-shellcheck - docker build -t thornycrackers/neovim . - -build-shellcheck: ## build the shellcheck binaries - clear +build: ## Build the base image docker build -t thornycrackers/shellcheck shellcheck-builder docker run --rm -it -v $(CURDIR):/mnt thornycrackers/shellcheck + 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;' + +down: ## Stop the container + docker stop $(CONTAINERNAME) || echo 'No container to stop' + +enter: ## Enter the running container + docker exec -it $(CONTAINERNAME) /bin/zsh + +clean: ## Remove the image and any stopped containers + docker rm $(CONTAINERNAME) || echo 'No container to remove' + docker rmi $(IMAGENAME) || echo 'No image to remove' -enter: ## Enter the image - docker run -i -t thornycrackers/neovim /bin/zsh |