diff --git a/CHANGELOG.md b/CHANGELOG.md index d07071e..426a92a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,10 @@ Summary of release changes for Version 2. CentOS-7 7.5.1804 x86_64 - Redis 4.0. +### 2.0.1 - 2018-11-19 + +- Updates source image to [2.4.1](https://github.com/jdeathe/centos-ssh/releases/tag/2.4.1). + ### 2.0.0 - 2018-11-03 - Initial release. diff --git a/Dockerfile b/Dockerfile index 1bbb66a..e980d99 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,9 +1,9 @@ # ============================================================================= # jdeathe/centos-ssh-redis # -# CentOS-6, Redis 4.0. +# CentOS-7, Redis 4.0. # ============================================================================= -FROM jdeathe/centos-ssh:2.4.0 +FROM jdeathe/centos-ssh:2.4.1 RUN yum -y install \ --setopt=tsflags=nodocs \ @@ -66,7 +66,7 @@ ENV REDIS_AUTOSTART_REDIS_BOOTSTRAP="true" \ # ----------------------------------------------------------------------------- # Set image metadata # ----------------------------------------------------------------------------- -ARG RELEASE_VERSION="2.0.0" +ARG RELEASE_VERSION="2.0.1" LABEL \ maintainer="James Deathe " \ install="docker run \ diff --git a/README.md b/README.md index 71f561d..80d6b18 100644 --- a/README.md +++ b/README.md @@ -8,12 +8,12 @@ Docker Image including: ## Overview & links -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.0.0` OR `1.0.0` for the [1.0.0](https://github.com/jdeathe/centos-ssh-redis/tree/1.0.0) release tag and `centos-7-2.0.0` OR `2.0.0` for the [2.0.0](https://github.com/jdeathe/centos-ssh-redis/tree/2.0.0) release tag. +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.0.1` OR `1.0.1` for the [1.0.1](https://github.com/jdeathe/centos-ssh-redis/tree/1.0.1) release tag and `centos-7-2.0.1` OR `2.0.1` for the [2.0.1](https://github.com/jdeathe/centos-ssh-redis/tree/2.0.1) release tag. ### Tags and respective `Dockerfile` links -- `centos-7`,`centos-7-2.0.0`,`2.0.0` [(centos-7/Dockerfile)](https://github.com/jdeathe/centos-ssh-redis/blob/centos-7/Dockerfile) -- `centos-6`,`centos-6-1.0.0`,`1.0.0` [(centos-6/Dockerfile)](https://github.com/jdeathe/centos-ssh-redis/blob/centos-6/Dockerfile) +- `centos-7`,`centos-7-2.0.1`,`2.0.1` [(centos-7/Dockerfile)](https://github.com/jdeathe/centos-ssh-redis/blob/centos-7/Dockerfile) +- `centos-6`,`centos-6-1.0.1`,`1.0.1` [(centos-6/Dockerfile)](https://github.com/jdeathe/centos-ssh-redis/blob/centos-6/Dockerfile) Included in the build are the [SCL](https://www.softwarecollections.org/), [EPEL](http://fedoraproject.org/wiki/EPEL) and [IUS](https://ius.io) repositories. Installed packages include [OpenSSH](http://www.openssh.com/portable.html) secure shell, [vim-minimal](http://www.vim.org/), are installed along with python-setuptools, [supervisor](http://supervisord.org/) and [supervisor-stdout](https://github.com/coderanger/supervisor-stdout). @@ -40,7 +40,7 @@ $ docker run -d \ --name redis.pool-1.1.1 \ -p 6379:6379/tcp \ --sysctl "net.core.somaxconn=1024" \ - jdeathe/centos-ssh-redis:2.0.0 + jdeathe/centos-ssh-redis:2.0.1 ``` Now you can verify it is initialised and running successfully by inspecting the container's logs. @@ -74,7 +74,7 @@ $ docker run \ --env "REDIS_MAXMEMORY_SAMPLES=10" \ --env "REDIS_OPTIONS=--loglevel verbose" \ --env "REDIS_TCP_BACKLOG=2048" \ - jdeathe/centos-ssh-redis:2.0.0 + jdeathe/centos-ssh-redis:2.0.1 ``` #### Environment Variables diff --git a/src/etc/systemd/system/centos-ssh-redis@.service b/src/etc/systemd/system/centos-ssh-redis@.service index 5bf0db9..9188f77 100644 --- a/src/etc/systemd/system/centos-ssh-redis@.service +++ b/src/etc/systemd/system/centos-ssh-redis@.service @@ -52,7 +52,7 @@ Environment="DOCKER_USER=jdeathe" Environment="DOCKER_CONTAINER_OPTS=" Environment="DOCKER_IMAGE_PACKAGE_PATH=/var/opt/scmi/packages" Environment="DOCKER_IMAGE_NAME=centos-ssh-redis" -Environment="DOCKER_IMAGE_TAG=2.0.0" +Environment="DOCKER_IMAGE_TAG=2.0.1" Environment="DOCKER_PORT_MAP_TCP_6379=6379" Environment="DOCKER_PORT_MAP_UDP_6379=NULL" Environment="REDIS_AUTOSTART_REDIS_BOOTSTRAP=true"