From d26879d8f013aa63c7014af7320eaf986c0080e8 Mon Sep 17 00:00:00 2001 From: Roy Kim Date: Mon, 16 Mar 2020 12:57:06 +0900 Subject: [PATCH] naver/pinpoint#6598] 2.0.1 release fix location --- pinpoint-hbase/Dockerfile | 2 +- pinpoint-mysql/Dockerfile | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pinpoint-hbase/Dockerfile b/pinpoint-hbase/Dockerfile index 6dc7b37..fa80411 100644 --- a/pinpoint-hbase/Dockerfile +++ b/pinpoint-hbase/Dockerfile @@ -19,7 +19,7 @@ RUN mkdir -p ${BASE_DIR} \ && curl -fSL "${HBASE_REPOSITORY}/${HBASE_VERSION}/hbase-${HBASE_VERSION}-bin.tar.gz" -o hbase.tar.gz || curl -fSL "${HBASE_SUB_REPOSITORY}/${HBASE_VERSION}/hbase-${HBASE_VERSION}-bin.tar.gz" -o hbase.tar.gz \ && tar xfvz hbase.tar.gz \ && mv ../../hbase-site.xml ../../${HBASE_HOME}/conf/hbase-site.xml \ - && curl -SL "https://raw.githubusercontent.com/naver/pinpoint/${PINPOINT_VERSION}/hbase/scripts/hbase-create.hbase" -o ${BASE_DIR}/hbase-create.hbase \ + && curl -SL "https://raw.githubusercontent.com/naver/pinpoint/v${PINPOINT_VERSION}/hbase/scripts/hbase-create.hbase" -o ${BASE_DIR}/hbase-create.hbase \ && ${HBASE_HOME}/bin/start-hbase.sh \ && sleep 10 \ && ${HBASE_HOME}/bin/hbase shell ${BASE_DIR}/hbase-create.hbase \ diff --git a/pinpoint-mysql/Dockerfile b/pinpoint-mysql/Dockerfile index be6db0c..5b8d86a 100644 --- a/pinpoint-mysql/Dockerfile +++ b/pinpoint-mysql/Dockerfile @@ -4,8 +4,8 @@ ARG PINPOINT_VERSION=${PINPOINT_VERSION:-2.0.1} RUN apt update \ && apt-get install -y --no-install-recommends ca-certificates wget \ - && wget -O /docker-entrypoint-initdb.d/CreateTableStatement-mysql.sql "https://raw.githubusercontent.com/naver/pinpoint/$PINPOINT_VERSION/web/src/main/resources/sql/CreateTableStatement-mysql.sql" \ - && wget -O /docker-entrypoint-initdb.d/SpringBatchJobRepositorySchema-mysql.sql "https://raw.githubusercontent.com/naver/pinpoint/$PINPOINT_VERSION/web/src/main/resources/sql/SpringBatchJobRepositorySchema-mysql.sql" \ + && wget -O /docker-entrypoint-initdb.d/CreateTableStatement-mysql.sql "https://raw.githubusercontent.com/naver/pinpoint/v$PINPOINT_VERSION/web/src/main/resources/sql/CreateTableStatement-mysql.sql" \ + && wget -O /docker-entrypoint-initdb.d/SpringBatchJobRepositorySchema-mysql.sql "https://raw.githubusercontent.com/naver/pinpoint/v$PINPOINT_VERSION/web/src/main/resources/sql/SpringBatchJobRepositorySchema-mysql.sql" \ && sed -i '/^--/d' /docker-entrypoint-initdb.d/CreateTableStatement-mysql.sql \ && sed -i '/^--/d' /docker-entrypoint-initdb.d/SpringBatchJobRepositorySchema-mysql.sql \ && apt-get purge -y --auto-remove ca-certificates wget