Skip to content
This repository was archived by the owner on Jul 2, 2024. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -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 \
Expand Down Expand Up @@ -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 <james.deathe@gmail.com>" \
install="docker run \
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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).

Expand All @@ -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.
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/etc/systemd/system/centos-ssh-redis@.service
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down