File tree Expand file tree Collapse file tree 2 files changed +17
-1
lines changed Expand file tree Collapse file tree 2 files changed +17
-1
lines changed Original file line number Diff line number Diff line change
1
+ .PHONY : image push
2
+ all : image
3
+ # REPOSITORY=
4
+ # WHOAMI=$(shell whoami)
5
+ WHOAMI =bmwilli1
6
+ IMAGE_VERSION =1.3.0
7
+ IMAGE_NAME =streams-metric-exporter
8
+ FULL_IMAGE_NAME =${WHOAMI}/${IMAGE_NAME}
9
+ DOCKERFILE =Dockerfile
10
+
11
+ image : ${DOCKERFILE}
12
+ docker build -t ${FULL_IMAGE_NAME} :${IMAGE_VERSION} -t ${FULL_IMAGE_NAME} :latest -f ${DOCKERFILE} ..
13
+
14
+ push : image
15
+ docker push ${FULL_IMAGE_NAME} :${IMAGE_VERSION}
16
+ docker push ${FULL_IMAGE_NAME} :latest
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ under the License.
22
22
<modelVersion >4.0.0</modelVersion >
23
23
<groupId >streamsx.jmxclients</groupId >
24
24
<artifactId >streams-metric-exporter</artifactId >
25
- <version >1.2 .0</version >
25
+ <version >1.3 .0</version >
26
26
<packaging >jar</packaging >
27
27
28
28
<name >streams-metric-exporter</name >
You can’t perform that action at this time.
0 commit comments