diff --git a/.github/workflows/docker-build.yml b/.github/workflows/docker-build.yml index a95a420..ec84b98 100644 --- a/.github/workflows/docker-build.yml +++ b/.github/workflows/docker-build.yml @@ -29,7 +29,7 @@ jobs: matrix: include: - series: innovation - version: 9.2 + version: 9.3 extra_tag: Innovation - series: lts version: 8.4 diff --git a/.github/workflows/docker-image.yml b/.github/workflows/docker-image.yml index a08bd1c..e8e1ced 100644 --- a/.github/workflows/docker-image.yml +++ b/.github/workflows/docker-image.yml @@ -24,7 +24,7 @@ jobs: matrix: include: - series: innovation - version: 9.2 + version: 9.3 extra_tag: Innovation - series: lts version: 8.4 diff --git a/.github/workflows/review-feature.yml b/.github/workflows/review-feature.yml index badbbb1..ba293c3 100644 --- a/.github/workflows/review-feature.yml +++ b/.github/workflows/review-feature.yml @@ -15,7 +15,7 @@ jobs: matrix: include: - series: innovation - version: 9.2 + version: 9.3 - series: lts version: 8.4 diff --git a/README.md b/README.md index a7d168f..448c259 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ [![Codacy Badge](https://api.codacy.com/project/badge/Grade/314c46648b7a4b85a25edfeef95edad5)](https://app.codacy.com/gh/snickerjp/docker-mysql-shell?utm_source=github.com&utm_medium=referral&utm_content=snickerjp/docker-mysql-shell&utm_campaign=Badge_Grade_Settings) This repository contains Dockerfiles for MySQL Shell in two different series: -- Innovation Series (9.2.x) - Latest features [(Dockerfile)](docker/innovation/Dockerfile) +- Innovation Series (9.3.x) - Latest features [(Dockerfile)](docker/innovation/Dockerfile) - LTS Series (8.4.x) - Long Term Support [(Dockerfile)](docker/lts/Dockerfile) Both images are based on Debian 12 (slim) for minimal image size. @@ -11,7 +11,7 @@ Both images are based on Debian 12 (slim) for minimal image size. ## Available Tags ### Innovation Series [(Dockerfile)](docker/innovation/Dockerfile) -- `snickerjp/docker-mysql-shell:9.2` - Innovation series with specific version +- `snickerjp/docker-mysql-shell:9.3` - Innovation series with specific version - `snickerjp/docker-mysql-shell:Innovation` - Latest Innovation series build ### LTS Series [(Dockerfile)](docker/lts/Dockerfile) @@ -21,10 +21,10 @@ Both images are based on Debian 12 (slim) for minimal image size. ## Building the Images -### Innovation Series (9.2.x) [(Dockerfile)](docker/innovation/Dockerfile) +### Innovation Series (9.3.x) [(Dockerfile)](docker/innovation/Dockerfile) ```bash cd docker/innovation -docker build -t snickerjp/docker-mysql-shell:9.2 . +docker build -t snickerjp/docker-mysql-shell:9.3 . ``` ### LTS Series (8.4.x) [(Dockerfile)](docker/lts/Dockerfile) @@ -39,7 +39,7 @@ Run MySQL Shell container: ```bash # Innovation Series -docker run -it snickerjp/docker-mysql-shell:9.2 +docker run -it snickerjp/docker-mysql-shell:9.3 # or docker run -it snickerjp/docker-mysql-shell:Innovation @@ -54,7 +54,7 @@ docker run -it snickerjp/docker-mysql-shell:latest To connect to a MySQL Server: ```bash # Innovation Series -docker run -it snickerjp/docker-mysql-shell:9.2 --uri mysql://user:pass@host:port/schema +docker run -it snickerjp/docker-mysql-shell:9.3 --uri mysql://user:pass@host:port/schema # or using Innovation tag docker run -it snickerjp/docker-mysql-shell:Innovation --uri mysql://user:pass@host:port/schema diff --git a/docker/innovation/Dockerfile b/docker/innovation/Dockerfile index 9c7b619..e3e8b94 100644 --- a/docker/innovation/Dockerfile +++ b/docker/innovation/Dockerfile @@ -1,7 +1,7 @@ FROM debian:12-slim ARG DEBIAN_FRONTEND=noninteractive -ARG MYSQL_SHELL_VERSION=9.2.0 +ARG MYSQL_SHELL_VERSION=9.3.0 # Create a user for the container RUN useradd -ms /bin/bash mysqlshelluser diff --git a/docker/lts/Dockerfile b/docker/lts/Dockerfile index 1a1b175..cf30267 100644 --- a/docker/lts/Dockerfile +++ b/docker/lts/Dockerfile @@ -1,7 +1,7 @@ FROM debian:12-slim ARG DEBIAN_FRONTEND=noninteractive -ARG MYSQL_SHELL_VERSION=8.4.4 +ARG MYSQL_SHELL_VERSION=8.4.5 # Create a user for the container RUN useradd -ms /bin/bash mysqlshelluser