forked from blacktop/docker-elasticsearch-alpine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
93 lines (73 loc) · 3.05 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
REPO=blacktop/elasticsearch
ORG=blacktop
NAME=elasticsearch
# build info
BUILD ?=$(shell cat LATEST)
LATEST ?=$(shell cat LATEST)
all: update build size test
BUILDS=$(LATEST) 7.8 7.7 7.6 7.5 7.4 7.3 7.2 7.1 7.0 6.8 6.7 5.6
.PHONY: update
update:
$(foreach build,$(BUILDS),NAME=$(NAME) BUILD=$(build) $(MAKE) dockerfile;)
.PHONY: dockerfile
dockerfile: ## Update Dockerfiles
ifneq "$(BUILD)" "x-pack"
hack/make/dockerfile
endif
.PHONY: build
build: ## Build docker image
cd $(BUILD); docker build --pull -t $(ORG)/$(NAME):$(BUILD) .
.PHONY: size
size: build ## Get built image size
ifeq "$(BUILD)" "$(LATEST)"
sed -i.bu 's/docker%20image-.*-blue/docker%20image-$(shell docker images --format "{{.Size}}" $(ORG)/$(NAME):$(BUILD)| cut -d' ' -f1)-blue/' README.md
sed -i.bu '/latest/ s/[0-9.]\{3,5\}MB/$(shell docker images --format "{{.Size}}" $(ORG)/$(NAME):$(BUILD))/' README.md
endif
sed -i.bu '/$(BUILD)/ s/[0-9.]\{3,5\}MB/$(shell docker images --format "{{.Size}}" $(ORG)/$(NAME):$(BUILD))/' README.md
.PHONY: tag
tag:
ORG=$(ORG) NAME=$(NAME) BUILD=$(BUILD) hack/make/tag
.PHONY: tags
tags:
docker images --format "table {{.Repository}}\t{{.Tag}}\t{{.Size}}" $(ORG)/$(NAME)
.PHONY: test
test: stop ## Test docker image
docker run -d --name $(NAME) -p 9200:9200 -e cluster.name=testcluster $(ORG)/$(NAME):$(BUILD)
@wait-for-es
@docker logs $(NAME)
http localhost:9200 | jq .cluster_name
docker rm -f $(NAME)
.PHONY: tar
tar: ## Export tar of docker image
docker save $(ORG)/$(NAME):$(BUILD) -o $(NAME).tar
.PHONY: push
push: build ## Push docker image to docker registry
@echo "===> Pushing $(ORG)/$(NAME):$(BUILD) to docker hub..."
@docker push $(ORG)/$(NAME):$(BUILD)
.PHONY: run
run: stop ## Run docker container
docker run --init -it --rm --name $(NAME) -p 9200:9200 -e ELASTIC_PASSWORD=password -e "discovery.type=single-node" $(ORG)/$(NAME):$(BUILD)
.PHONY: ssh
ssh: ## SSH into docker image
@docker run --init -it --rm -p 9200:9200 --entrypoint=bash $(ORG)/$(NAME):$(BUILD)
.PHONY: stop
stop: ## Kill running docker containers
@docker rm -f $(NAME) || true
.PHONY: circle
circle: ci-size ## Get docker image size from CircleCI
@sed -i.bu 's/docker%20image-.*-blue/docker%20image-$(shell cat .circleci/SIZE)-blue/' README.md
@echo "===> Image size is: $(shell cat .circleci/SIZE)"
ci-build:
@echo "===> Getting CircleCI build number"
@http https://circleci.com/api/v1.1/project/github/${REPO} | jq '.[0].build_num' > .circleci/build_num
ci-size: ci-build
@echo "===> Getting image build size from CircleCI"
@http "$(shell http https://circleci.com/api/v1.1/project/github/${REPO}/$(shell cat .circleci/build_num)/artifacts circle-token==${CIRCLE_TOKEN} | jq '.[].url')" > .circleci/SIZE
.PHONY: clean
clean: ## Clean docker image and stop all running containers
docker-clean stop
docker rmi $(ORG)/$(NAME):$(BUILD) || true
# Absolutely awesome: http://marmelab.com/blog/2016/02/29/auto-documented-makefile.html
help:
@grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'
.DEFAULT_GOAL := help