-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
235 lines (174 loc) · 5.73 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
#
# Standard version level Makefile used to build a Docker container for Gearbox - https://github.com/gearboxworks/gearbox/
#
.ONESHELL:
ifdef TARGET_VERSION
################################################################################
JSONCMD := ./bin/JsonToConfig -json $(TARGET_VERSION)/gearbox.json
JSONTEST := $(shell $(JSONCMD) -template-string '{{ .Json.name }}')
ifeq ($(JSONTEST),)
$(error "# Gearbox: ERROR - No ./bin/JsonToConfig binary.")
else
define GetFromPkg
$(shell ./bin/JsonToConfig -json $(TARGET_VERSION)/gearbox.json -template-string '$(1)')
endef
endif
################################################################################
# Set global variables from container file.
ORGANIZATION := $(call GetFromPkg,organization)
NAME := $(call GetFromPkg,name)
VERSION := $(call GetFromPkg,version)
MAJORVERSION := $(call GetFromPkg,majorversion)
LATEST := $(call GetFromPkg,latest)
CLASS := $(call GetFromPkg,class)
NETWORK := $(call GetFromPkg,network)
PORTS := $(call GetFromPkg,ports)
VOLUMES := $(call GetFromPkg,volumes)
RESTART := $(call GetFromPkg,restart)
ARGS := $(call GetFromPkg,args)
STATE := $(call GetFromPkg,state)
ENV := $(call GetFromPkg,env)
GIT_COMMENT := Release $(TARGET_VERSION) commit.
# The critical bit. Determines what Dockerfile to build against.
SKIP := no
DOCKERFILE := $(TARGET_VERSION)/DockerfileRuntime
BUILD_ARGS :=
NAME := $(NAME)
IMAGE_NAME ?= $(ORGANIZATION)/$(NAME)
CONTAINER_NAME ?= $(NAME)-$(VERSION)
CONTAINER_JSON ?= '$(call rawJSON)'
else
BASEDIR := $(shell pwd)
VERSIONS := $(subst /,, $(sort $(filter-out ./, $(dir $(wildcard *.*/) ) ) ) )
#$(error TARGET_VERSION is not set)
endif
.PHONY: init build push release clean list logs inspect test shell run start stop rm
################################################################################
# Image related commands.
.DEFAULT:
@make -k help
default: all
all:
@make -k help
help:
@echo "################################################################################"
@echo "init - Initialize repository from TEMPLATE."
@echo "update - Update repository TEMPLATE."
@echo "git-release - Generate a repository release."
@echo ""
@echo "clean-[all | <VERSION>] - Clean runtime container image."
@echo "build-[all | <VERSION>] - Generate runtime container image."
@echo "test-[all | <VERSION>] - Execute container unit tests."
@echo "push-[all | <VERSION>] - Push runtime container image to DockerHub & GitHub."
@echo ""
@echo "info-[all | <VERSION>] - Generate info from runtime container image."
@echo "logs-[all | <VERSION>] - Show logs from last build."
@echo "readme - Show README.md."
@echo ""
@echo "release-[all | <VERSION>] - Execute the following process:"
@echo " clean"
@echo " build"
@echo " test"
@echo " push"
################################################################################
#%-all:
# @./bin/$*.sh all
################################################################################
readme:
@cat README.md
################################################################################
init: *.json
.FORCE:
%.json: .FORCE
@echo "Gearbox: Initialize repository."
@./bin/create-build.sh "all"
@./bin/create-version.sh "all"
################################################################################
update:
@./bin/TemplateUpdate.sh
@make init
git-release:
@./bin/TemplateRelease.sh
################################################################################
info:
@./bin/$@.sh $(VERSION)
info-%:
@./bin/info.sh "$*"
################################################################################
clean:
@./bin/$@.sh $(VERSION)
clean-%:
@./bin/clean.sh "$*"
################################################################################
build:
@./bin/$@.sh $(VERSION)
build-%:
@./bin/build.sh "$*"
################################################################################
push:
@./bin/$@.sh $(VERSION)
push-%:
@./bin/push.sh "$*"
################################################################################
github:
@./bin/github.sh all
################################################################################
dockerhub:
@./bin/$@.sh $(VERSION)
dockerhub-%:
@./bin/dockerhub.sh "$*"
################################################################################
release:
@./bin/$@.sh $(VERSION)
release-%:
@./bin/release.sh "$*"
################################################################################
list:
@./bin/$@.sh $(VERSION)
list-%:
@./bin/list.sh "$*"
################################################################################
logs:
@./bin/$@.sh $(VERSION)
logs-%:
@./bin/logs.sh "$*"
################################################################################
inspect:
@./bin/$@.sh $(VERSION)
inspect-%:
@./bin/inspect.sh "$*"
################################################################################
test:
@./bin/$@.sh $(VERSION)
test-%:
@./bin/test.sh "$*"
################################################################################
rm:
@./bin/$@.sh $(VERSION)
rm-%:
@./bin/rm.sh "$*"
################################################################################
start:
@./bin/$@.sh $(VERSION)
start-%:
@./bin/start.sh "$*"
################################################################################
stop:
@./bin/$@.sh $(VERSION)
stop-%:
@./bin/stop.sh "$*"
################################################################################
ports:
@./bin/$@.sh $(VERSION)
ports-%:
@./bin/ports.sh "$*"
################################################################################
shell:
@./bin/$@.sh $(VERSION)
shell-%:
@./bin/shell.sh "$*"
################################################################################
ssh:
@./bin/$@.sh $(VERSION)
ssh-%:
@./bin/ssh.sh "$*"