-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
39 lines (30 loc) · 1.07 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
include .env
SHELL := /bin/bash
DOCKER_COMPOSE := /usr/local/bin/docker-compose
DOCKER_COMPOSE_BASE := $(DOCKER_COMPOSE)
ifdef PROJECT_NAME
DOCKER_COMPOSE_BASE += -p $(PROJECT_NAME)
endif
.PHONY: docker-compose
docker-compose: $(DOCKER_COMPOSE)
$(DOCKER_COMPOSE): DOCKER_COMPOSE_VERSION := 1.14.0
$(DOCKER_COMPOSE):
@if [ ! -w $(@D) ]; then echo 'No docker-compose found. Please run "sudo make docker-compose" to install it.'; exit 2; else true; fi
@curl -L https://github.com/docker/compose/releases/download/$(DOCKER_COMPOSE_VERSION)/docker-compose-`uname -s`-`uname -m` > $@
@chmod +x $@
.PHONY: build
build: export COMMIT_SHA ?= $(shell git rev-parse HEAD)
build: export GIT_BRANCH ?= $(shell git symbolic-ref HEAD | sed -e "s/^refs\/heads\///")
build: export PULL_REQUEST = ${ghprbPullLink}
build: $(DOCKER_COMPOSE)
@$(DOCKER_COMPOSE_BASE) build cassandra
.PHONY: run
run: $(DOCKER_COMPOSE)
@$(DOCKER_COMPOSE_BASE) up --build
.PHONY: down
down: $(DOCKER_COMPOSE)
$(DOCKER_COMPOSE_BASE) down
.PHONY: clean
clean:: down
.PHONY: mrclean
mrclean: clean