Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Get MySQL, Mroonga, and Groonga versions automatically in update.sh (#98
) Usage: `./update.sh` The result of execution of `./update.sh` as below. ```diff Date: Thu Jan 30 11:29:55 2025 +0900 MySQL 8.0.41 and Mroonga 14.13 diff --git a/README.md b/README.md index 7c5ad8d..2397169 100644 --- a/README.md +++ b/README.md @@ -35,7 +35,8 @@ Currently, groonga/mroonga provides these couples of versions. | tag | MySQL | Mroonga | Groonga | |------------------------|--------|---------|---------| -| mysql-8.0-latest | 8.0.40 | 14.12 | 14.1.2 | +| mysql-8.0-latest | 8.0.41 | 14.13 | 14.1.3 | +| mysql-8.0.41-14.13 | 8.0.41 | 14.13 | 14.1.3 | | mysql-8.0.40-14.12 | 8.0.40 | 14.12 | 14.1.2 | | mysql-8.0.30-12.06 | 8.0.30 | 12.06 | 12.0.6 | | mysql-8.0.29-12.04 | 8.0.29 | 12.04 | 12.0.4 | diff --git a/mysql-8.0/Dockerfile b/mysql-8.0/Dockerfile index ed6b805..e7fbbec 100644 --- a/mysql-8.0/Dockerfile +++ b/mysql-8.0/Dockerfile @@ -1,4 +1,4 @@ -FROM mysql:8.0.40-oraclelinux9 +FROM mysql:8.0.41-oraclelinux9 # TODO # Remove `--setopt=apache-arrow-almalinux.gpgcheck=0` option. @@ -8,8 +8,8 @@ FROM mysql:8.0.40-oraclelinux9 # error: failed to parse public key for /var/cache/yum/metadata/apache-arrow-almalinux-9-x86_64/RPM-GPG-KEY-Apache-Arrow # ``` -ENV groonga_version=14.1.2 \ - mroonga_version=14.12 +ENV groonga_version=14.1.3 \ + mroonga_version=14.13 RUN mkdir -p /etc/mysql/mysql.conf.d && \ touch /etc/mysql/mysql.conf.d/default-auth-override.cnf && \ @@ -33,6 +33,6 @@ RUN mkdir -p /docker-entrypoint-mroonga-initdb.d && \ -e 's,docker_process_init_files /,docker_process_init_files /docker-entrypoint-mroonga-initdb.d/* /,g' \ /usr/local/bin/docker-entrypoint.sh -# mysql:8.0.40 image has DB in /var/lib/mysql/. +# mysql:8.0.41 image has DB in /var/lib/mysql/. # This clears /var/lib/mysql/ to ensure creating a new DB on "docker run". VOLUME ["/var/lib/mysql"] ``` --------- Co-authored-by: Sutou Kouhei <[email protected]>
- Loading branch information