aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: 7b597fa82a0c57293efb4ff54556d1cabc7fe756 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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 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/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/bash

clean: ## Remove the image and any stopped containers
	docker rm $(CONTAINERNAME) || echo 'No container to remove'
	docker rmi $(IMAGENAME) || echo 'No image to remove'