-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
33 lines (24 loc) · 916 Bytes
/
Makefile
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
27
28
29
30
31
32
33
NAME := mariadb-toolbox
TAG := `git describe --long --tags --dirty --always`
IMAGE_NAME := panubo/$(NAME)
.PHONY: *
help:
@printf "$$(grep -hE '^\S+:.*##' $(MAKEFILE_LIST) | sed -e 's/:.*##\s*/:/' -e 's/^\(.\+\):\(.*\)/\\x1b[36m\1\\x1b[m:\2/' | column -c2 -t -s :)\n"
build: ## Builds docker image
docker build --pull -t $(IMAGE_NAME):$(TAG) .
test: ## Run tests (dind)
./tests/dind-runner.sh
test-local: ## Run tests (local)
./tests/runner.sh
_ci_test:
true
shell: ## Run shell
docker run --rm -t -i --entrypoint /bin/bash $(IMAGE_NAME):$(TAG)
clean: ## Remove built image
docker rmi $(IMAGE_NAME):$(TAG)
push: ## Pushes the docker image to hub.docker.com
# Don't --pull here, we don't want any last minute upsteam changes
docker build -t $(IMAGE_NAME):$(TAG) .
docker tag $(IMAGE_NAME):$(TAG) $(IMAGE_NAME):latest
docker push $(IMAGE_NAME):$(TAG)
docker push $(IMAGE_NAME):latest