diff --git a/pinpoint-mysql/CreateTableStatement-mysql.sql b/pinpoint-mysql/CreateTableStatement-mysql.sql index 761493e..a3bc6e5 100644 --- a/pinpoint-mysql/CreateTableStatement-mysql.sql +++ b/pinpoint-mysql/CreateTableStatement-mysql.sql @@ -1,5 +1,5 @@ CREATE TABLE `user_group` ( - `number` INT(10) UNSIGNED NOT NULL AUTO_INCREMENT, + `number` INT(10) UNSIGNED NOT NULL AUTO_INCREMENT, `id` VARCHAR(30) NOT NULL, PRIMARY KEY (`number`) ); diff --git a/pinpoint-mysql/Dockerfile b/pinpoint-mysql/Dockerfile index 68f0ee9..2f3f134 100644 --- a/pinpoint-mysql/Dockerfile +++ b/pinpoint-mysql/Dockerfile @@ -1,7 +1,4 @@ FROM mysql:5.7 -ENV PINPOINT_VERSION=1.6.2 - -ADD https://raw.githubusercontent.com/naver/pinpoint/$PINPOINT_VERSION/web/src/main/resources/sql/CreateTableStatement-mysql.sql /docker-entrypoint-initdb.d -ADD https://raw.githubusercontent.com/naver/pinpoint/$PINPOINT_VERSION/web/src/main/resources/sql/SpringBatchJobReositorySchema-mysql.sql /docker-entrypoint-initdb.d -RUN chmod 0777 /docker-entrypoint-initdb.d/*.sql \ No newline at end of file +ADD CreateTableStatement-mysql.sql /docker-entrypoint-initdb.d +ADD SpringBatchJobReositorySchema-mysql.sql /docker-entrypoint-initdb.d \ No newline at end of file