diff --git a/.env b/.env index 6a9b2b4..a4242d4 100644 --- a/.env +++ b/.env @@ -1,4 +1,4 @@ -PINPOINT_VERSION=1.7.2 +PINPOINT_VERSION=1.7.3 ### Pinpoint-Hbase diff --git a/Readme.md b/Readme.md index 6961042..d006de3 100644 --- a/Readme.md +++ b/Readme.md @@ -11,6 +11,7 @@ Official git repository of Dockerized components of the [Pinpoint Application Mo It supports and helps you understand your application in a glance and allow you to build world-class, high-quality software. ## Supported Tags + - 1.7.3 - 1.7.2 diff --git a/pinpoint-agent-attach-example/java/.env b/pinpoint-agent-attach-example/java/.env index 3dad9ba..787821e 100644 --- a/pinpoint-agent-attach-example/java/.env +++ b/pinpoint-agent-attach-example/java/.env @@ -1,4 +1,4 @@ ### Pinpoint with Java -PINPOINT_VERSION=1.7.2 +PINPOINT_VERSION=1.7.3 AGENT_ID=app-in-docker APP_NAME=quickapp \ No newline at end of file diff --git a/pinpoint-agent-attach-example/tomcat/.env b/pinpoint-agent-attach-example/tomcat/.env index c0b18aa..6fbdf96 100644 --- a/pinpoint-agent-attach-example/tomcat/.env +++ b/pinpoint-agent-attach-example/tomcat/.env @@ -1,5 +1,5 @@ ### Pinpoint with Tomcat -PINPOINT_VERSION=1.7.2 +PINPOINT_VERSION=1.7.3 APP_PORT=8000 AGENT_ID=app-in-docker APP_NAME=quickapp \ No newline at end of file diff --git a/pinpoint-agent/.env b/pinpoint-agent/.env index 6d5eef5..397be74 100644 --- a/pinpoint-agent/.env +++ b/pinpoint-agent/.env @@ -1,4 +1,4 @@ -PINPOINT_VERSION=1.7.2 +PINPOINT_VERSION=1.7.3 ### Pinpoint-Agent diff --git a/pinpoint-agent/Dockerfile b/pinpoint-agent/Dockerfile index 09aba7d..b3d010a 100644 --- a/pinpoint-agent/Dockerfile +++ b/pinpoint-agent/Dockerfile @@ -2,7 +2,7 @@ FROM alpine:3.7 LABEL maintainer="Roy Kim " -ARG PINPOINT_VERSION=${PINPOINT_VERSION:-1.7.2} +ARG PINPOINT_VERSION=${PINPOINT_VERSION:-1.7.3} ARG INSTALL_URL=https://github.com/naver/pinpoint/releases/download/${PINPOINT_VERSION}/pinpoint-agent-${PINPOINT_VERSION}.tar.gz COPY /build/scripts/configure-agent.sh /usr/local/bin/ diff --git a/pinpoint-agent/Readme.md b/pinpoint-agent/Readme.md index 13849c7..0e557c4 100644 --- a/pinpoint-agent/Readme.md +++ b/pinpoint-agent/Readme.md @@ -7,6 +7,7 @@ This Docker image contains the Pinpoint Agent component of the Pinpoint applicat - 1.7.3 - 1.7.2 + Please see [Pinpoint-Docker GitHub repository](https://github.com/naver/pinpoint-docker) for further information on how to run, configure and build this image. ## Any Issues or Suggestions? diff --git a/pinpoint-collector/.env b/pinpoint-collector/.env index ed7d0e4..9148d8f 100644 --- a/pinpoint-collector/.env +++ b/pinpoint-collector/.env @@ -1,4 +1,4 @@ -PINPOINT_VERSION=1.7.2 +PINPOINT_VERSION=1.7.3 ### Pinpoint-Collector diff --git a/pinpoint-collector/Dockerfile b/pinpoint-collector/Dockerfile index aca512a..4fddfd6 100644 --- a/pinpoint-collector/Dockerfile +++ b/pinpoint-collector/Dockerfile @@ -2,7 +2,7 @@ FROM tomcat:8-jre8 LABEL maintainer="Roy Kim " -ARG PINPOINT_VERSION=${PINPOINT_VERSION:-1.7.2} +ARG PINPOINT_VERSION=${PINPOINT_VERSION:-1.7.3} ARG INSTALL_URL=https://github.com/naver/pinpoint/releases/download/${PINPOINT_VERSION}/pinpoint-collector-${PINPOINT_VERSION}.war diff --git a/pinpoint-collector/Readme.md b/pinpoint-collector/Readme.md index b04b89d..d903c7d 100644 --- a/pinpoint-collector/Readme.md +++ b/pinpoint-collector/Readme.md @@ -7,6 +7,7 @@ This Docker image contains the Pinpoint Collector component of the Pinpoint appl - 1.7.3 - 1.7.2 + Please see [Pinpoint-Docker GitHub repository](https://github.com/naver/pinpoint-docker) for further information on how to run, configure and build this image. ## Any Issues or Suggestions? diff --git a/pinpoint-flink/.env b/pinpoint-flink/.env index 21746b2..1635ede 100644 --- a/pinpoint-flink/.env +++ b/pinpoint-flink/.env @@ -1,4 +1,4 @@ -PINPOINT_VERSION=1.7.2 +PINPOINT_VERSION=1.7.3 ### Pinpoint-flink diff --git a/pinpoint-flink/docker-compose.yml b/pinpoint-flink/docker-compose.yml index 38c75b3..f1c7c14 100644 --- a/pinpoint-flink/docker-compose.yml +++ b/pinpoint-flink/docker-compose.yml @@ -2,7 +2,7 @@ version: "3.6" ## #to use this separately will require pinpoint-flink-job-{version}.jar built #from pinpoint-flink module with correct properties under hbase.properties, pinpoint-flink.properties -#sample configs used to build pinpoint-flink/build/pinpoint-flink-job-1.7.2.jar is under build folder +#sample configs used to build pinpoint-flink/build/pinpoint-flink-job-{version}.jar is under build folder ## services: ##flink diff --git a/pinpoint-hbase/.env b/pinpoint-hbase/.env index 537b8f5..2df44ea 100644 --- a/pinpoint-hbase/.env +++ b/pinpoint-hbase/.env @@ -1,4 +1,4 @@ -PINPOINT_VERSION=1.7.2 +PINPOINT_VERSION=1.7.3 ### Pinpoint-Hbase diff --git a/pinpoint-hbase/Dockerfile b/pinpoint-hbase/Dockerfile index 9a5e568..851c9e7 100644 --- a/pinpoint-hbase/Dockerfile +++ b/pinpoint-hbase/Dockerfile @@ -2,7 +2,7 @@ FROM java:8-jdk LABEL maintainer="Roy Kim " -ARG PINPOINT_VERSION=${PINPOINT_VERSION:-1.7.2} +ARG PINPOINT_VERSION=${PINPOINT_VERSION:-1.7.3} ENV HBASE_REPOSITORY=http://apache.mirrors.pair.com/hbase ENV HBASE_SUB_REPOSITORY=http://archive.apache.org/dist/hbase diff --git a/pinpoint-hbase/Readme.md b/pinpoint-hbase/Readme.md index 05991b3..3205816 100644 --- a/pinpoint-hbase/Readme.md +++ b/pinpoint-hbase/Readme.md @@ -7,6 +7,7 @@ This Docker image contains the Pinpoint Hbase component of the Pinpoint applicat - 1.7.3 - 1.7.2 + Please see the [Pinpoint-Docker GitHub repository](https://github.com/naver/pinpoint-docker) for further information on how to run, configure and build this image. ## Any Issues or Suggestions? diff --git a/pinpoint-quickstart/.env b/pinpoint-quickstart/.env index cc2991c..8f245fe 100644 --- a/pinpoint-quickstart/.env +++ b/pinpoint-quickstart/.env @@ -1,4 +1,4 @@ -PINPOINT_VERSION=1.7.2 +PINPOINT_VERSION=1.7.3 ### Pinpoint-Agent diff --git a/pinpoint-web/.env b/pinpoint-web/.env index a6a8b2d..0086a72 100644 --- a/pinpoint-web/.env +++ b/pinpoint-web/.env @@ -1,4 +1,4 @@ -PINPOINT_VERSION=1.7.2 +PINPOINT_VERSION=1.7.3 ### Pinpoint-Web diff --git a/pinpoint-web/Dockerfile b/pinpoint-web/Dockerfile index 20e72cc..8a223d9 100644 --- a/pinpoint-web/Dockerfile +++ b/pinpoint-web/Dockerfile @@ -2,7 +2,7 @@ FROM tomcat:8-jre8 LABEL maintainer="Roy Kim " -ARG PINPOINT_VERSION=${PINPOINT_VERSION:-1.7.2} +ARG PINPOINT_VERSION=${PINPOINT_VERSION:-1.7.3} ARG INSTALL_URL=https://github.com/naver/pinpoint/releases/download/${PINPOINT_VERSION}/pinpoint-web-${PINPOINT_VERSION}.war COPY /build/scripts/start-web.sh /usr/local/bin/ diff --git a/pinpoint-web/Readme.md b/pinpoint-web/Readme.md index cce3e5b..eb7dbd1 100644 --- a/pinpoint-web/Readme.md +++ b/pinpoint-web/Readme.md @@ -7,6 +7,7 @@ This Docker image contains the Pinpoint Web component of the Pinpoint applicatio - 1.7.3 - 1.7.2 + Please see the [Pinpoint-Docker GitHub repository](https://github.com/naver/pinpoint-docker) for further information on how to run, configure and build this image. ## Any Issues or Suggestions?