3
3
[ ![ 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 )
4
4
5
5
This repository contains Dockerfiles for MySQL Shell in two different series:
6
- - Innovation Series (9.2 .x) - Latest features [ (Dockerfile)] ( docker/innovation/Dockerfile )
6
+ - Innovation Series (9.3 .x) - Latest features [ (Dockerfile)] ( docker/innovation/Dockerfile )
7
7
- LTS Series (8.4.x) - Long Term Support [ (Dockerfile)] ( docker/lts/Dockerfile )
8
8
9
9
Both images are based on Debian 12 (slim) for minimal image size.
10
10
11
11
## Available Tags
12
12
13
13
### Innovation Series [ (Dockerfile)] ( docker/innovation/Dockerfile )
14
- - ` snickerjp/docker-mysql-shell:9.2 ` - Innovation series with specific version
14
+ - ` snickerjp/docker-mysql-shell:9.3 ` - Innovation series with specific version
15
15
- ` snickerjp/docker-mysql-shell:Innovation ` - Latest Innovation series build
16
16
17
17
### LTS Series [ (Dockerfile)] ( docker/lts/Dockerfile )
@@ -21,10 +21,10 @@ Both images are based on Debian 12 (slim) for minimal image size.
21
21
22
22
## Building the Images
23
23
24
- ### Innovation Series (9.2 .x) [ (Dockerfile)] ( docker/innovation/Dockerfile )
24
+ ### Innovation Series (9.3 .x) [ (Dockerfile)] ( docker/innovation/Dockerfile )
25
25
``` bash
26
26
cd docker/innovation
27
- docker build -t snickerjp/docker-mysql-shell:9.2 .
27
+ docker build -t snickerjp/docker-mysql-shell:9.3 .
28
28
```
29
29
30
30
### LTS Series (8.4.x) [ (Dockerfile)] ( docker/lts/Dockerfile )
@@ -39,7 +39,7 @@ Run MySQL Shell container:
39
39
40
40
``` bash
41
41
# Innovation Series
42
- docker run -it snickerjp/docker-mysql-shell:9.2
42
+ docker run -it snickerjp/docker-mysql-shell:9.3
43
43
# or
44
44
docker run -it snickerjp/docker-mysql-shell:Innovation
45
45
@@ -54,7 +54,7 @@ docker run -it snickerjp/docker-mysql-shell:latest
54
54
To connect to a MySQL Server:
55
55
``` bash
56
56
# Innovation Series
57
- docker run -it snickerjp/docker-mysql-shell:9.2 --uri mysql://user:pass@host:port/schema
57
+ docker run -it snickerjp/docker-mysql-shell:9.3 --uri mysql://user:pass@host:port/schema
58
58
# or using Innovation tag
59
59
docker run -it snickerjp/docker-mysql-shell:Innovation --uri mysql://user:pass@host:port/schema
60
60
0 commit comments