diff --git a/.env b/.env
index 3f82d25..ab3bf71 100644
--- a/.env
+++ b/.env
@@ -1,4 +1,4 @@
-PINPOINT_VERSION=2.4.0
+PINPOINT_VERSION=2.4.1
 SPRING_PROFILES=release
 #zookeeper information required
 PINPOINT_ZOOKEEPER_ADDRESS=zoo1
diff --git a/Readme.md b/Readme.md
index 0c3fe05..e914886 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
 
+ - 2.4.1
  - 2.4.0
  - 2.3.3
  - 2.3.2
diff --git a/pinpoint-agent-attach-example/java/.env b/pinpoint-agent-attach-example/java/.env
index ba83491..3b49311 100644
--- a/pinpoint-agent-attach-example/java/.env
+++ b/pinpoint-agent-attach-example/java/.env
@@ -1,5 +1,5 @@
 ### Pinpoint with Java
-PINPOINT_VERSION=2.4.0
+PINPOINT_VERSION=2.4.1
 SPRING_PROFILES=release
 AGENT_ID=java-app-in-docker
 APP_NAME=JavaAttachExample
diff --git a/pinpoint-agent-attach-example/tomcat/.env b/pinpoint-agent-attach-example/tomcat/.env
index ac90812..476e431 100644
--- a/pinpoint-agent-attach-example/tomcat/.env
+++ b/pinpoint-agent-attach-example/tomcat/.env
@@ -1,5 +1,5 @@
 ### Pinpoint with Tomcat
-PINPOINT_VERSION=2.4.0
+PINPOINT_VERSION=2.4.1
 SPRING_PROFILES=release
 APP_PORT=8085
 AGENT_ID=app-in-docker
diff --git a/pinpoint-agent/.env b/pinpoint-agent/.env
index 649e686..b5ef548 100644
--- a/pinpoint-agent/.env
+++ b/pinpoint-agent/.env
@@ -1,4 +1,4 @@
-PINPOINT_VERSION=2.4.0
+PINPOINT_VERSION=2.4.1
 SPRING_PROFILES=release
 
 ### Pinpoint-Agent
diff --git a/pinpoint-agent/Dockerfile b/pinpoint-agent/Dockerfile
index 79e8b5b..6ad05c2 100644
--- a/pinpoint-agent/Dockerfile
+++ b/pinpoint-agent/Dockerfile
@@ -1,6 +1,6 @@
 FROM alpine:3.7
 
-ARG PINPOINT_VERSION=${PINPOINT_VERSION:-2.4.0}
+ARG PINPOINT_VERSION=${PINPOINT_VERSION:-2.4.1}
 ARG INSTALL_URL=https://github.com/pinpoint-apm/pinpoint/releases/download/v${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 2e14fde..8e88176 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
 
+ - 2.4.1
  - 2.4.0
  - 2.3.3
  - 2.3.2
diff --git a/pinpoint-batch/.env b/pinpoint-batch/.env
index b297eb3..ca34a11 100644
--- a/pinpoint-batch/.env
+++ b/pinpoint-batch/.env
@@ -1,4 +1,4 @@
-PINPOINT_VERSION=2.4.0
+PINPOINT_VERSION=2.4.1
 SPRING_PROFILES=release
 
 ### Pinpoint-Batch
diff --git a/pinpoint-batch/Dockerfile b/pinpoint-batch/Dockerfile
index 3314830..4b40d2c 100644
--- a/pinpoint-batch/Dockerfile
+++ b/pinpoint-batch/Dockerfile
@@ -1,6 +1,6 @@
 FROM openjdk:11.0.16-jre-slim-buster
 
-ARG PINPOINT_VERSION=${PINPOINT_VERSION:-2.4.0}
+ARG PINPOINT_VERSION=${PINPOINT_VERSION:-2.4.1}
 ARG INSTALL_URL=https://github.com/pinpoint-apm/pinpoint/releases/download/v${PINPOINT_VERSION}/pinpoint-batch-${PINPOINT_VERSION}.jar
 
 RUN mkdir -p /pinpoint/config \
diff --git a/pinpoint-batch/Readme.md b/pinpoint-batch/Readme.md
index 7eb0045..98b0b0e 100644
--- a/pinpoint-batch/Readme.md
+++ b/pinpoint-batch/Readme.md
@@ -4,6 +4,7 @@ This Docker image contains the Pinpoint Batch component of the Pinpoint applicat
 
 ## Supported Tags
 
+ - 2.4.1
  - 2.4.0
  
 Please see the [Pinpoint-Docker GitHub repository](https://github.com/pinpoint-apm/pinpoint-docker) for further information on how to run, configure and build this image.
diff --git a/pinpoint-collector/.env b/pinpoint-collector/.env
index 7c23a22..87e741b 100644
--- a/pinpoint-collector/.env
+++ b/pinpoint-collector/.env
@@ -1,4 +1,4 @@
-PINPOINT_VERSION=2.4.0
+PINPOINT_VERSION=2.4.1
 SPRING_PROFILES=release
 
 ### Pinpoint-Collector
diff --git a/pinpoint-collector/Dockerfile b/pinpoint-collector/Dockerfile
index d62544f..e15c088 100644
--- a/pinpoint-collector/Dockerfile
+++ b/pinpoint-collector/Dockerfile
@@ -1,6 +1,6 @@
 FROM openjdk:11.0.16-jre-slim-buster
 
-ARG PINPOINT_VERSION=${PINPOINT_VERSION:-2.4.0}
+ARG PINPOINT_VERSION=${PINPOINT_VERSION:-2.4.1}
 ARG INSTALL_URL=https://github.com/pinpoint-apm/pinpoint/releases/download/v${PINPOINT_VERSION}/pinpoint-collector-boot-${PINPOINT_VERSION}.jar
 
 RUN mkdir -p /pinpoint/config \
@@ -9,7 +9,7 @@ RUN mkdir -p /pinpoint/config \
 COPY /build/config/pinpoint-collector.properties /pinpoint/config/
 COPY /build/scripts/start-collector.sh /pinpoint/scripts/
 #temporary line for local test
-#COPY /pinpoint-collector-boot-2.4.0-SNAPSHOT.jar /pinpoint/pinpoint-collector-boot.jar
+#COPY /pinpoint-collector-boot-2.4.1-SNAPSHOT.jar /pinpoint/pinpoint-collector-boot.jar
 
 RUN apt-get update && apt-get install --no-install-recommends -y curl && apt-get clean \
     && chmod a+x /pinpoint/scripts/start-collector.sh \
diff --git a/pinpoint-collector/Readme.md b/pinpoint-collector/Readme.md
index 75d952b..c35cd53 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
 
+ - 2.4.1
  - 2.4.0
  - 2.3.3
  - 2.3.2
diff --git a/pinpoint-flink/.env b/pinpoint-flink/.env
index e581ff4..df92156 100644
--- a/pinpoint-flink/.env
+++ b/pinpoint-flink/.env
@@ -1,4 +1,4 @@
-PINPOINT_VERSION=2.4.0
+PINPOINT_VERSION=2.4.1
 
 ### Pinpoint-flink
 
diff --git a/pinpoint-flink/Dockerfile b/pinpoint-flink/Dockerfile
index 41aa1e2..ca22b3a 100644
--- a/pinpoint-flink/Dockerfile
+++ b/pinpoint-flink/Dockerfile
@@ -1,5 +1,5 @@
 FROM flink:1.14-java11
-ARG PINPOINT_VERSION=${PINPOINT_VERSION:-2.4.0}
+ARG PINPOINT_VERSION=${PINPOINT_VERSION:-2.4.1}
 ARG INSTALL_URL=https://github.com/pinpoint-apm/pinpoint/releases/download/v${PINPOINT_VERSION}/pinpoint-flink-job-${PINPOINT_VERSION}.jar
 
 RUN apt-get update \
diff --git a/pinpoint-flink/Readme.md b/pinpoint-flink/Readme.md
index f7d0bec..53fe15d 100644
--- a/pinpoint-flink/Readme.md
+++ b/pinpoint-flink/Readme.md
@@ -5,6 +5,7 @@ This Docker image contains the Pinpoint Flink component of the Pinpoint applicat
 
 ## Supported Tags
 
+ - 2.4.1
  - 2.4.0
  - 2.3.3
  - 2.3.2
diff --git a/pinpoint-hbase/.env b/pinpoint-hbase/.env
index c61d3dd..67971b1 100644
--- a/pinpoint-hbase/.env
+++ b/pinpoint-hbase/.env
@@ -1,4 +1,4 @@
-PINPOINT_VERSION=2.4.0
+PINPOINT_VERSION=2.4.1
 
 ### Pinpoint-Hbase
 
diff --git a/pinpoint-hbase/Dockerfile b/pinpoint-hbase/Dockerfile
index 5ec9976..aa988c2 100644
--- a/pinpoint-hbase/Dockerfile
+++ b/pinpoint-hbase/Dockerfile
@@ -1,6 +1,6 @@
 FROM openjdk:8u342-slim
 
-ARG PINPOINT_VERSION=${PINPOINT_VERSION:-2.4.0}
+ARG PINPOINT_VERSION=${PINPOINT_VERSION:-2.4.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 1e87704..5463660 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
 
+ - 2.4.1
  - 2.4.0
  - 2.3.3
  - 2.3.2
diff --git a/pinpoint-mysql/.env b/pinpoint-mysql/.env
index 7a89046..6a6990c 100644
--- a/pinpoint-mysql/.env
+++ b/pinpoint-mysql/.env
@@ -1,4 +1,4 @@
-PINPOINT_VERSION=2.4.0
+PINPOINT_VERSION=2.4.1
 
 ### Pinpoint-mysql
 MYSQL_ROOT_PASSWORD=root123
diff --git a/pinpoint-mysql/Dockerfile b/pinpoint-mysql/Dockerfile
index 6561381..a4efe43 100644
--- a/pinpoint-mysql/Dockerfile
+++ b/pinpoint-mysql/Dockerfile
@@ -1,6 +1,6 @@
 FROM mysql:8.0
 
-ARG PINPOINT_VERSION=${PINPOINT_VERSION:-2.4.0}
+ARG PINPOINT_VERSION=${PINPOINT_VERSION:-2.4.1}
 
 RUN curl -SL "https://raw.githubusercontent.com/pinpoint-apm/pinpoint/v$PINPOINT_VERSION/web/src/main/resources/sql/CreateTableStatement-mysql.sql" -o /docker-entrypoint-initdb.d/CreateTableStatement-mysql.sql \
 	&& curl -SL "https://raw.githubusercontent.com/pinpoint-apm/pinpoint/v$PINPOINT_VERSION/web/src/main/resources/sql/SpringBatchJobRepositorySchema-mysql.sql" -o /docker-entrypoint-initdb.d/SpringBatchJobRepositorySchema-mysql.sql \
diff --git a/pinpoint-mysql/Readme.md b/pinpoint-mysql/Readme.md
index 6ed7a0d..fff3e67 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
 
+ - 2.4.1
  - 2.4.0
  - 2.3.3
  - 2.3.2
diff --git a/pinpoint-quickstart/.env b/pinpoint-quickstart/.env
index 84c33f9..82860c3 100644
--- a/pinpoint-quickstart/.env
+++ b/pinpoint-quickstart/.env
@@ -1,4 +1,4 @@
-PINPOINT_VERSION=2.4.0
+PINPOINT_VERSION=2.4.1
 SPRING_PROFILES=release
 
 ### Pinpoint-Agent
diff --git a/pinpoint-quickstart/Readme.md b/pinpoint-quickstart/Readme.md
index ad6a96c..157bf8d 100644
--- a/pinpoint-quickstart/Readme.md
+++ b/pinpoint-quickstart/Readme.md
@@ -5,6 +5,7 @@ This Docker image contains the Pinpoint Quickstart sample to test Pinpoint appli
 
 ## Supported Tags
 
+ - 2.4.1
  - 2.4.0
  - 2.3.3
  - 2.3.2
diff --git a/pinpoint-web/.env b/pinpoint-web/.env
index da78974..343f650 100644
--- a/pinpoint-web/.env
+++ b/pinpoint-web/.env
@@ -1,4 +1,4 @@
-PINPOINT_VERSION=2.4.0
+PINPOINT_VERSION=2.4.1
 SPRING_PROFILES=release
 
 ### Pinpoint-Web
diff --git a/pinpoint-web/Dockerfile b/pinpoint-web/Dockerfile
index 2653452..badf548 100644
--- a/pinpoint-web/Dockerfile
+++ b/pinpoint-web/Dockerfile
@@ -1,6 +1,6 @@
 FROM openjdk:11.0.16-jre-slim-buster
 
-ARG PINPOINT_VERSION=${PINPOINT_VERSION:-2.4.0}
+ARG PINPOINT_VERSION=${PINPOINT_VERSION:-2.4.1}
 ARG INSTALL_URL=https://github.com/pinpoint-apm/pinpoint/releases/download/v${PINPOINT_VERSION}/pinpoint-web-boot-${PINPOINT_VERSION}.jar
 
 RUN mkdir -p /pinpoint/config \
@@ -9,7 +9,7 @@ RUN mkdir -p /pinpoint/config \
 COPY /build/config/pinpoint-web.properties /pinpoint/config/
 COPY /build/scripts/start-web.sh /pinpoint/scripts/
 #temporary line for local test
-#COPY /pinpoint-web-boot-2.4.0-SNAPSHOT.jar /pinpoint/pinpoint-web-boot.jar
+#COPY /pinpoint-web-boot-2.4.1-SNAPSHOT.jar /pinpoint/pinpoint-web-boot.jar
 
 RUN apt-get update && apt-get install --no-install-recommends -y curl && apt-get clean \
     && chmod a+x /pinpoint/scripts/start-web.sh \
diff --git a/pinpoint-web/Readme.md b/pinpoint-web/Readme.md
index 0e7d251..1983176 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
 
+ - 2.4.1
  - 2.4.0
  - 2.3.3
  - 2.3.2