Skip to content
This repository was archived by the owner on Jul 2, 2024. It is now read-only.

Commit cf7a5eb

Browse files
committed
Release changes for 1.10.0 and 2.2.0.
1 parent 28ed9c0 commit cf7a5eb

File tree

3 files changed

+20
-20
lines changed

3 files changed

+20
-20
lines changed

CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Summary of release changes for Version 1.
66

77
CentOS-6 6.10 x86_64 - MySQL 5.1.
88

9-
### 1.10.0 - Unreleased
9+
### 1.10.0 - 2019-03-18
1010

1111
- Updates source image to [1.10.1](https://github.com/jdeathe/centos-ssh/releases/tag/1.10.1).
1212
- Updates and restructures Dockerfile.

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM jdeathe/centos-ssh:1.10.1
22

3-
ARG RELEASE_VERSION="1.9.1"
3+
ARG RELEASE_VERSION="1.10.0"
44

55
# ------------------------------------------------------------------------------
66
# Base install of required packages

README.md

+18-18
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@ Includes Automated password generation and an option for custom initialisation S
99

1010
## Overview & links
1111

12-
The latest CentOS-7 based release can be pulled from the `centos-7-mysql57-community` Docker tag. It is recommended to select a specific release tag - the convention is `centos-7-mysql57-community-2.1.1` or `2.1.1` for the [2.1.1](https://github.com/jdeathe/centos-ssh-mysql/tree/2.1.1) release tag.
12+
The latest CentOS-7 based release can be pulled from the `centos-7-mysql57-community` Docker tag. It is recommended to select a specific release tag - the convention is `centos-7-mysql57-community-2.2.0` or `2.2.0` for the [2.2.0](https://github.com/jdeathe/centos-ssh-mysql/tree/2.2.0) release tag.
1313

1414
### Tags and respective `Dockerfile` links
1515

16-
- `centos-7-mysql57-community`, `centos-7-mysql57-community-2.1.1`, `2.1.1` [(centos-7-mysql57-community/Dockerfile)](https://github.com/jdeathe/centos-ssh-mysql/blob/centos-7-mysql57-community/Dockerfile)
17-
- `centos-6`, `centos-6-1.9.1`, `1.9.1` [(centos-6/Dockerfile)](https://github.com/jdeathe/centos-ssh-mysql/blob/centos-6/Dockerfile)
16+
- `centos-7-mysql57-community`, `centos-7-mysql57-community-2.2.0`, `2.2.0` [(centos-7-mysql57-community/Dockerfile)](https://github.com/jdeathe/centos-ssh-mysql/blob/centos-7-mysql57-community/Dockerfile)
17+
- `centos-6`, `centos-6-1.10.0`, `1.10.0` [(centos-6/Dockerfile)](https://github.com/jdeathe/centos-ssh-mysql/blob/centos-6/Dockerfile)
1818

1919
The Dockerfile can be used to build a base image that is the bases for several other docker images.
2020

@@ -43,7 +43,7 @@ $ docker run -d \
4343
--name mysql.1 \
4444
-p 3306:3306 \
4545
-v /var/lib/mysql \
46-
jdeathe/centos-ssh-mysql:1.9.1
46+
jdeathe/centos-ssh-mysql:1.10.0
4747
```
4848

4949
Now you can verify it is initialised and running successfully by inspecting the container's logs.
@@ -118,10 +118,10 @@ $ docker run \
118118
--rm \
119119
--privileged \
120120
--volume /:/media/root \
121-
jdeathe/centos-ssh-mysql:1.9.1 \
121+
jdeathe/centos-ssh-mysql:1.10.0 \
122122
/usr/sbin/scmi install \
123123
--chroot=/media/root \
124-
--tag=1.9.1 \
124+
--tag=1.10.0 \
125125
--name=mysql.1 \
126126
--setopt='--volume {{NAME}}.data-mysql:/var/lib/mysql'
127127
```
@@ -135,10 +135,10 @@ $ docker run \
135135
--rm \
136136
--privileged \
137137
--volume /:/media/root \
138-
jdeathe/centos-ssh-mysql:1.9.1 \
138+
jdeathe/centos-ssh-mysql:1.10.0 \
139139
/usr/sbin/scmi uninstall \
140140
--chroot=/media/root \
141-
--tag=1.9.1 \
141+
--tag=1.10.0 \
142142
--name=mysql.1 \
143143
--setopt='--volume {{NAME}}.data-mysql:/var/lib/mysql'
144144
```
@@ -152,10 +152,10 @@ $ docker run \
152152
--rm \
153153
--privileged \
154154
--volume /:/media/root \
155-
jdeathe/centos-ssh-mysql:1.9.1 \
155+
jdeathe/centos-ssh-mysql:1.10.0 \
156156
/usr/sbin/scmi install \
157157
--chroot=/media/root \
158-
--tag=1.9.1 \
158+
--tag=1.10.0 \
159159
--name=mysql.1 \
160160
--manager=systemd \
161161
--register \
@@ -182,7 +182,7 @@ To see detailed information about the image run `scmi` with the `--info` option.
182182
$ eval "sudo -E $(
183183
docker inspect \
184184
-f "{{.ContainerConfig.Labels.install}}" \
185-
jdeathe/centos-ssh-mysql:1.9.1
185+
jdeathe/centos-ssh-mysql:1.10.0
186186
) --info"
187187
```
188188

@@ -192,7 +192,7 @@ To perform an installation using the docker name `mysql.2` simply use the `--nam
192192
$ eval "sudo -E $(
193193
docker inspect \
194194
-f "{{.ContainerConfig.Labels.install}}" \
195-
jdeathe/centos-ssh-mysql:1.9.1
195+
jdeathe/centos-ssh-mysql:1.10.0
196196
) --name=mysql.2"
197197
```
198198

@@ -202,7 +202,7 @@ To uninstall use the *same command* that was used to install but with the `unins
202202
$ eval "sudo -E $(
203203
docker inspect \
204204
-f "{{.ContainerConfig.Labels.uninstall}}" \
205-
jdeathe/centos-ssh-mysql:1.9.1
205+
jdeathe/centos-ssh-mysql:1.10.0
206206
) --name=mysql.2"
207207
```
208208

@@ -215,7 +215,7 @@ To see detailed information about the image run `scmi` with the `--info` option.
215215
```
216216
$ sudo -E atomic install \
217217
-n mysql.3 \
218-
jdeathe/centos-ssh-mysql:1.9.1 \
218+
jdeathe/centos-ssh-mysql:1.10.0 \
219219
--info
220220
```
221221

@@ -224,14 +224,14 @@ To perform an installation using the docker name `mysql.3` simply use the `-n` o
224224
```
225225
$ sudo -E atomic install \
226226
-n mysql.3 \
227-
jdeathe/centos-ssh-mysql:1.9.1
227+
jdeathe/centos-ssh-mysql:1.10.0
228228
```
229229

230230
Alternatively, you could use the `scmi` options `--name` or `-n` for naming the container.
231231

232232
```
233233
$ sudo -E atomic install \
234-
jdeathe/centos-ssh-mysql:1.9.1 \
234+
jdeathe/centos-ssh-mysql:1.10.0 \
235235
--name mysql.3
236236
```
237237

@@ -240,7 +240,7 @@ To uninstall use the *same command* that was used to install but with the `unins
240240
```
241241
$ sudo -E atomic uninstall \
242242
-n mysql.3 \
243-
jdeathe/centos-ssh-mysql:1.9.1
243+
jdeathe/centos-ssh-mysql:1.10.0
244244
```
245245

246246
#### Using environment variables
@@ -259,7 +259,7 @@ $ docker run \
259259
--env "MYSQL_USER_PASSWORD=" \
260260
--env "MYSQL_USER_DATABASE=app-db" \
261261
--volume mysql.1.data-mysql:/var/lib/mysql \
262-
jdeathe/centos-ssh-mysql:1.9.1
262+
jdeathe/centos-ssh-mysql:1.10.0
263263
```
264264

265265
The environmental variable `MYSQL_SUBNET` is optional but can be used to generate users with access to databases outside the `localhost`, (the default for the root user). In the example, the subnet definition `0.0.0.0/0.0.0.0` allows connections from any network which is equivalent to the wildcard symbol, `%`, in MySQL GRANT definitions.

0 commit comments

Comments
 (0)