-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathMakefile
64 lines (45 loc) · 1.34 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
-include env_make
SOLR_VER ?= 9.8.0
SOLR_VER_MINOR=$(shell echo "${SOLR_VER}" | grep -oE '^[0-9]+\.[0-9]+')
TAG ?= $(SOLR_VER_MINOR)
REPO = wodby/solr
NAME = solr-$(SOLR_VER)
PLATFORM ?= linux/arm64
ifneq ($(ARCH),)
override TAG := $(TAG)-$(ARCH)
endif
.PHONY: test push shell run start stop logs clean release
default: buildx-build
buildx-build:
docker buildx build --platform $(PLATFORM) -t $(REPO):$(TAG) \
--build-arg SOLR_VERSION=$(SOLR_VER) \
--load \
./
.PHONY: buildx-build
buildx-push:
docker buildx build --push --platform $(PLATFORM) -t $(REPO):$(TAG) \
--build-arg SOLR_VERSION=$(SOLR_VER) \
./
buildx-imagetools-create:
docker buildx imagetools create -t $(REPO):$(TAG) \
$(REPO):$(SOLR_VER_MINOR)-amd64 \
$(REPO):$(SOLR_VER_MINOR)-arm64
.PHONY: buildx-imagetools-create
test:
cd ./tests && IMAGE=$(REPO):$(TAG) ./run.sh
push:
docker push $(REPO):$(TAG)
shell:
docker run --rm --name $(NAME) -i -t $(PORTS) $(VOLUMES) $(ENV) $(REPO):$(TAG) /bin/bash
run:
docker run --rm --name $(NAME) -e DEBUG=1 $(PORTS) $(VOLUMES) $(ENV) $(REPO):$(TAG) $(CMD)
start:
docker run -d --name $(NAME) $(PORTS) $(VOLUMES) $(ENV) $(REPO):$(TAG)
stop:
docker stop $(NAME)
logs:
docker logs $(NAME)
clean:
-docker rm -f $(NAME)
-IMAGE=$(REPO):$(TAG) docker compose -f tests/compose.yml down -v
release: build push