This repository has been archived by the owner on Jan 21, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 42
/
Makefile
90 lines (72 loc) · 3.22 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
REPO=blacktop/docker-bro
ORG=blacktop
NAME=bro
BUILD ?=$(shell cat LATEST)
LATEST ?=$(shell cat LATEST)
all: build size test
build: ## Build docker image
cd $(BUILD); docker build -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: tags
tags:
docker images --format "table {{.Repository}}\t{{.Tag}}\t{{.Size}}" $(ORG)/$(NAME)
test: stop-all ## Test docker image
ifeq ($(BUILD),elastic)
@docker-compose -f docker-compose.elastic.yml up -d kibana
@docker-compose -f docker-compose.elastic.yml up bro
@http localhost:9200/_cat/indices
@open -a Safari https://goo.gl/e5v7Qr
else ifeq ($(BUILD),kafka)
@tests/kafka.sh
else ifeq ($(BUILD),redis)
@docker-compose -f docker-compose.redis.yml up -d logstash
@docker-compose -f docker-compose.elastic.yml up bro
@http localhost:9200/_cat/indices
@open -a Safari https://goo.gl/e5v7Qr
else
@docker run --rm $(ORG)/$(NAME):$(BUILD) --version
@docker run --rm -v `pwd`/pcap:/pcap -v `pwd`/scripts/local.bro:/usr/local/share/bro/site/local.bro $(ORG)/$(NAME):$(BUILD) -r heartbleed.pcap local "Site::local_nets += { 192.168.11.0/24 }"
@cat pcap/notice.log | awk '{ print $$11 }' | tail -n4
endif
.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 -d --name $(NAME) -p 9200:9200 $(ORG)/$(NAME):$(BUILD)
.PHONY: ssh
ssh: ## SSH into docker image
@docker run --init -it --rm --entrypoint=sh $(ORG)/$(NAME):$(BUILD)
.PHONY: stop
stop: ## Kill running docker containers
@docker rm -f $(NAME) || true
.PHONY: stop-all
stop-all: ## Kill ALL running docker containers
@docker-clean stop
.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
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