diff --git a/.env b/.env index 07d7d4f..add6e88 100644 --- a/.env +++ b/.env @@ -1,4 +1,4 @@ -PINPOINT_VERSION=1.8.0 +PINPOINT_VERSION=1.8.1 ### Pinpoint-Hbase diff --git a/Readme.md b/Readme.md index 40410ac..d7457ab 100644 --- a/Readme.md +++ b/Readme.md @@ -13,6 +13,7 @@ It supports and helps you understand your application in a glance and allow you ## Supported Tags + - 1.8.1 - 1.8.0 - 1.7.3 - 1.7.2 @@ -32,8 +33,16 @@ git clone https://github.com/naver/pinpoint-docker.git cd pinpoint-docker docker-compose pull && docker-compose up -d ``` -If you'd like to bring up the previous release. Try with docker-compose file from other tags. -You can also just build the image with `docker-compose up -d` command without pulling the image. But you can reduce the time to 1/3 by just downloading them. +If you'd like to bring up a previous release. Try with docker-compose file from other tags. + +``` +git clone https://github.com/naver/pinpoint-docker.git +git checkout {tag} +cd pinpoint-docker +docker-compose pull && docker-compose up -d +``` + +You can also build the image with `docker-compose up -d` command without pulling the image. But you can reduce the time to 1/3 by just downloading them. This will install and run all services required to run all features in Pinpoint in docker containers joined with same network. - Pinpoint-Web Server diff --git a/pinpoint-agent-attach-example/java/.env b/pinpoint-agent-attach-example/java/.env index 754c4de..8efd61f 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.8.0 +PINPOINT_VERSION=1.8.1 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 ca1fbc0..4c44302 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.8.0 +PINPOINT_VERSION=1.8.1 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 f55abdc..96febaa 100644 --- a/pinpoint-agent/.env +++ b/pinpoint-agent/.env @@ -1,4 +1,4 @@ -PINPOINT_VERSION=1.8.0 +PINPOINT_VERSION=1.8.1 ### Pinpoint-Agent diff --git a/pinpoint-agent/Dockerfile b/pinpoint-agent/Dockerfile index 8deefb4..243bf94 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.8.0} +ARG PINPOINT_VERSION=${PINPOINT_VERSION:-1.8.1} 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 cc8317f..7b09569 100644 --- a/pinpoint-agent/Readme.md +++ b/pinpoint-agent/Readme.md @@ -5,6 +5,7 @@ This Docker image contains the Pinpoint Agent component of the Pinpoint applicat ## Supported Tags + - 1.8.1 - 1.8.0 - 1.7.3 - 1.7.2 diff --git a/pinpoint-collector/.env b/pinpoint-collector/.env index 67196b7..0c5d12e 100644 --- a/pinpoint-collector/.env +++ b/pinpoint-collector/.env @@ -1,4 +1,4 @@ -PINPOINT_VERSION=1.8.0 +PINPOINT_VERSION=1.8.1 ### Pinpoint-Collector diff --git a/pinpoint-collector/Dockerfile b/pinpoint-collector/Dockerfile index 2387bdc..8c14aad 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.8.0} +ARG PINPOINT_VERSION=${PINPOINT_VERSION:-1.8.1} 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 13c46d2..bf20a2f 100644 --- a/pinpoint-collector/Readme.md +++ b/pinpoint-collector/Readme.md @@ -5,6 +5,7 @@ This Docker image contains the Pinpoint Collector component of the Pinpoint appl ## Supported Tags + - 1.8.1 - 1.8.0 - 1.7.3 - 1.7.2 diff --git a/pinpoint-flink/.env b/pinpoint-flink/.env index c59abf8..1bfc470 100644 --- a/pinpoint-flink/.env +++ b/pinpoint-flink/.env @@ -1,4 +1,4 @@ -PINPOINT_VERSION=1.8.0 +PINPOINT_VERSION=1.8.1 ### Pinpoint-flink diff --git a/pinpoint-hbase/.env b/pinpoint-hbase/.env index 8be2aaf..3338e93 100644 --- a/pinpoint-hbase/.env +++ b/pinpoint-hbase/.env @@ -1,4 +1,4 @@ -PINPOINT_VERSION=1.8.0 +PINPOINT_VERSION=1.8.1 ### Pinpoint-Hbase diff --git a/pinpoint-hbase/Dockerfile b/pinpoint-hbase/Dockerfile index 8533c4c..4403e6d 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.8.0} +ARG PINPOINT_VERSION=${PINPOINT_VERSION:-1.8.1} 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 d8228aa..e437a21 100644 --- a/pinpoint-hbase/Readme.md +++ b/pinpoint-hbase/Readme.md @@ -5,6 +5,7 @@ This Docker image contains the Pinpoint Hbase component of the Pinpoint applicat ## Supported Tags + - 1.8.1 - 1.8.0 - 1.7.3 - 1.7.2 diff --git a/pinpoint-mysql/.env b/pinpoint-mysql/.env index ac6c27b..41e5824 100644 --- a/pinpoint-mysql/.env +++ b/pinpoint-mysql/.env @@ -1,4 +1,4 @@ -PINPOINT_VERSION=1.8.0 +PINPOINT_VERSION=1.8.1 ### Pinpoint-mysql MYSQL_ROOT_PASSWORD=root123 diff --git a/pinpoint-mysql/Dockerfile b/pinpoint-mysql/Dockerfile index 3d8f87f..752aa8d 100644 --- a/pinpoint-mysql/Dockerfile +++ b/pinpoint-mysql/Dockerfile @@ -1,6 +1,6 @@ FROM mysql:5.7 -ARG PINPOINT_VERSION=${PINPOINT_VERSION:-1.8.0} +ARG PINPOINT_VERSION=${PINPOINT_VERSION:-1.8.1} RUN apt update \ && apt-get install -y --no-install-recommends ca-certificates wget \ diff --git a/pinpoint-mysql/Readme.md b/pinpoint-mysql/Readme.md index 91168c2..3e8d2d8 100644 --- a/pinpoint-mysql/Readme.md +++ b/pinpoint-mysql/Readme.md @@ -5,6 +5,7 @@ This Docker image contains the Pinpoint Mysql component of the Pinpoint applicat ## Supported Tags + - 1.8.1 - 1.8.0 - 1.7.3 - 1.7.2 diff --git a/pinpoint-quickstart/.env b/pinpoint-quickstart/.env index 2e4d076..f47270b 100644 --- a/pinpoint-quickstart/.env +++ b/pinpoint-quickstart/.env @@ -1,4 +1,4 @@ -PINPOINT_VERSION=1.8.0 +PINPOINT_VERSION=1.8.1 ### Pinpoint-Agent diff --git a/pinpoint-web/.env b/pinpoint-web/.env index ff33195..5d744d7 100644 --- a/pinpoint-web/.env +++ b/pinpoint-web/.env @@ -1,4 +1,4 @@ -PINPOINT_VERSION=1.8.0 +PINPOINT_VERSION=1.8.1 ### Pinpoint-Web diff --git a/pinpoint-web/Dockerfile b/pinpoint-web/Dockerfile index e295197..b5af554 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.8.0} +ARG PINPOINT_VERSION=${PINPOINT_VERSION:-1.8.1} 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 2d8ccec..4e3fd5d 100644 --- a/pinpoint-web/Readme.md +++ b/pinpoint-web/Readme.md @@ -5,6 +5,7 @@ This Docker image contains the Pinpoint Web component of the Pinpoint applicatio ## Supported Tags + - 1.8.1 - 1.8.0 - 1.7.3 - 1.7.2