Skip to content

Commit f55f172

Browse files
committed
Release changes for 2.3.0.
1 parent 149587a commit f55f172

File tree

4 files changed

+19
-19
lines changed

4 files changed

+19
-19
lines changed

CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
Summary of release changes for Version 2 - CentOS-7
66

7-
### 2.3.0 - Unreleased
7+
### 2.3.0 - 2017-10-06
88

99
- Updates source tag to CentOS 7.4.1708.
1010

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ ENV SSH_AUTHORIZED_KEYS="" \
154154
# -----------------------------------------------------------------------------
155155
# Set image metadata
156156
# -----------------------------------------------------------------------------
157-
ARG RELEASE_VERSION="2.2.4"
157+
ARG RELEASE_VERSION="2.3.0"
158158
LABEL \
159159
maintainer="James Deathe <[email protected]>" \
160160
install="docker run \

README.md

+16-16
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ Includes public key authentication, Automated password generation and supports c
77

88
## Overview & links
99

10-
The latest CentOS-6 / CentOS-7 based releases can be pulled from the `centos-6` / `centos-7` Docker tags respectively. For production use it is recommended to select a specific release tag - the convention is `centos-6-1.8.2` OR `1.8.2` for the [1.8.2](https://github.com/jdeathe/centos-ssh/tree/1.8.2) release tag and `centos-7-2.2.4` OR `2.2.4` for the [2.2.4](https://github.com/jdeathe/centos-ssh/tree/2.2.4) release tag.
10+
The latest CentOS-6 / CentOS-7 based releases can be pulled from the `centos-6` / `centos-7` Docker tags respectively. For production use it is recommended to select a specific release tag - the convention is `centos-6-1.8.2` OR `1.8.2` for the [1.8.2](https://github.com/jdeathe/centos-ssh/tree/1.8.2) release tag and `centos-7-2.3.0` OR `2.3.0` for the [2.3.0](https://github.com/jdeathe/centos-ssh/tree/2.3.0) release tag.
1111

1212
### Tags and respective `Dockerfile` links
1313

14-
- `centos-7`,`centos-7-2.2.4`,`2.2.4` [(centos-7/Dockerfile)](https://github.com/jdeathe/centos-ssh/blob/centos-7/Dockerfile)
14+
- `centos-7`,`centos-7-2.3.0`,`2.3.0` [(centos-7/Dockerfile)](https://github.com/jdeathe/centos-ssh/blob/centos-7/Dockerfile)
1515
- `centos-6`,`centos-6-1.8.2`,`1.8.2` [(centos-6/Dockerfile)](https://github.com/jdeathe/centos-ssh/blob/centos-6/Dockerfile)
1616

1717
The Dockerfile can be used to build a base image that is the bases for several other docker images.
@@ -105,10 +105,10 @@ $ docker run \
105105
--rm \
106106
--privileged \
107107
--volume /:/media/root \
108-
jdeathe/centos-ssh:2.2.4 \
108+
jdeathe/centos-ssh:2.3.0 \
109109
/usr/sbin/scmi install \
110110
--chroot=/media/root \
111-
--tag=2.2.4 \
111+
--tag=2.3.0 \
112112
--name=ssh.pool-1.1.1 \
113113
--setopt="--volume {{NAME}}.config-ssh:/etc/ssh"
114114
```
@@ -122,10 +122,10 @@ $ docker run \
122122
--rm \
123123
--privileged \
124124
--volume /:/media/root \
125-
jdeathe/centos-ssh:2.2.4 \
125+
jdeathe/centos-ssh:2.3.0 \
126126
/usr/sbin/scmi uninstall \
127127
--chroot=/media/root \
128-
--tag=2.2.4 \
128+
--tag=2.3.0 \
129129
--name=ssh.pool-1.1.1 \
130130
--setopt="--volume {{NAME}}.config-ssh:/etc/ssh"
131131
```
@@ -139,10 +139,10 @@ $ docker run \
139139
--rm \
140140
--privileged \
141141
--volume /:/media/root \
142-
jdeathe/centos-ssh:2.2.4 \
142+
jdeathe/centos-ssh:2.3.0 \
143143
/usr/sbin/scmi install \
144144
--chroot=/media/root \
145-
--tag=2.2.4 \
145+
--tag=2.3.0 \
146146
--name=ssh.pool-1.1.1 \
147147
--manager=systemd \
148148
--register \
@@ -162,7 +162,7 @@ Since release tags `1.7.2` / `2.1.2` the install template has been added to the
162162
_NOTE:_ A prerequisite of the following examples is that the image has been pulled (or loaded from the release package).
163163

164164
```
165-
$ docker pull jdeathe/centos-ssh:2.2.4
165+
$ docker pull jdeathe/centos-ssh:2.3.0
166166
```
167167

168168
To see detailed information about the image run `scmi` with the `--info` option. To see all available `scmi` options run with the `--help` option.
@@ -171,7 +171,7 @@ To see detailed information about the image run `scmi` with the `--info` option.
171171
$ eval "sudo -E $(
172172
docker inspect \
173173
-f "{{.ContainerConfig.Labels.install}}" \
174-
jdeathe/centos-ssh:2.2.4
174+
jdeathe/centos-ssh:2.3.0
175175
) --info"
176176
```
177177

@@ -181,7 +181,7 @@ To perform an installation using the docker name `ssh.pool-1.2.1` simply use the
181181
$ eval "sudo -E $(
182182
docker inspect \
183183
-f "{{.ContainerConfig.Labels.install}}" \
184-
jdeathe/centos-ssh:2.2.4
184+
jdeathe/centos-ssh:2.3.0
185185
) --name=ssh.pool-1.2.1"
186186
```
187187

@@ -191,7 +191,7 @@ To uninstall use the *same command* that was used to install but with the `unins
191191
$ eval "sudo -E $(
192192
docker inspect \
193193
-f "{{.ContainerConfig.Labels.uninstall}}" \
194-
jdeathe/centos-ssh:2.2.4
194+
jdeathe/centos-ssh:2.3.0
195195
) --name=ssh.pool-1.2.1"
196196
```
197197

@@ -204,7 +204,7 @@ To see detailed information about the image run `scmi` with the `--info` option.
204204
```
205205
$ sudo -E atomic install \
206206
-n ssh.pool-1.3.1 \
207-
jdeathe/centos-ssh:2.2.4 \
207+
jdeathe/centos-ssh:2.3.0 \
208208
--info
209209
```
210210

@@ -213,14 +213,14 @@ To perform an installation using the docker name `ssh.pool-1.3.1` simply use the
213213
```
214214
$ sudo -E atomic install \
215215
-n ssh.pool-1.3.1 \
216-
jdeathe/centos-ssh:2.2.4
216+
jdeathe/centos-ssh:2.3.0
217217
```
218218

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

221221
```
222222
$ sudo -E atomic install \
223-
jdeathe/centos-ssh:2.2.4 \
223+
jdeathe/centos-ssh:2.3.0 \
224224
--name ssh.pool-1.3.1
225225
```
226226

@@ -229,7 +229,7 @@ To uninstall use the *same command* that was used to install but with the `unins
229229
```
230230
$ sudo -E atomic uninstall \
231231
-n ssh.pool-1.3.1 \
232-
jdeathe/centos-ssh:2.2.4
232+
jdeathe/centos-ssh:2.3.0
233233
```
234234

235235
#### Using environment variables

src/etc/systemd/system/[email protected]

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ Environment="DOCKER_USER=jdeathe"
5151
Environment="DOCKER_IMAGE_NAME=centos-ssh"
5252
Environment="DOCKER_CONTAINER_OPTS="
5353
Environment="DOCKER_IMAGE_PACKAGE_PATH=/var/opt/scmi/packages"
54-
Environment="DOCKER_IMAGE_TAG=2.2.4"
54+
Environment="DOCKER_IMAGE_TAG=2.3.0"
5555
Environment="DOCKER_PORT_MAP_TCP_22=2020"
5656
Environment="SSH_AUTHORIZED_KEYS="
5757
Environment="SSH_AUTOSTART_SSHD=true"

0 commit comments

Comments
 (0)