From 3afd8e57621c1046dcc1710720956e6bb61b055e Mon Sep 17 00:00:00 2001 From: Endial Fang Date: Fri, 11 Sep 2020 10:48:05 +0800 Subject: [PATCH] =?UTF-8?q?[fix:6.0]=E6=9B=B4=E6=96=B0=E7=89=88=E6=9C=AC?= =?UTF-8?q?=E4=B8=BA6.0.8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile | 6 +++--- README.md | 4 ++++ alpine/Dockerfile | 6 +++--- 3 files changed, 10 insertions(+), 6 deletions(-) diff --git a/Dockerfile b/Dockerfile index 3e7189e..753ce4b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -27,9 +27,9 @@ RUN set -eux; \ chmod +x /usr/local/wait-for-port-1.0.0-1-linux-amd64-debian-10/files/common/bin/wait-for-port; RUN set -eux; \ - appVersion=6.0.5; \ + appVersion=6.0.8; \ appName="redis-${appVersion}.tar.gz"; \ - sha256="42cf86a114d2a451b898fcda96acd4d01062a7dbaaad2801d9164a36f898f596"; \ + sha256="04fa1fddc39bd1aecb6739dd5dd73858a3515b427acd1e2947a66dadce868d68"; \ [ ! -z ${local_url} ] && localURL=${local_url}/redis; \ appUrls="${localURL:-} \ http://download.redis.io/releases \ @@ -67,7 +67,7 @@ ARG local_url="" ENV APP_NAME=redis \ APP_USER=redis \ APP_EXEC=redis-server \ - APP_VERSION=6.0.5 + APP_VERSION=6.0.8 ENV APP_HOME_DIR=/usr/local/${APP_NAME} \ APP_DEF_DIR=/etc/${APP_NAME} \ diff --git a/README.md b/README.md index d1b7d4f..52743af 100644 --- a/README.md +++ b/README.md @@ -169,6 +169,10 @@ services: - 容器中 Redis 启动参数不能配置为后台运行,只能使用前台运行方式,即:`daemonize no` +## 历史记录 + +- 2020.9.11:更新 Redis 版本为 6.0.8 + ---- diff --git a/alpine/Dockerfile b/alpine/Dockerfile index 92a2519..6b014b9 100644 --- a/alpine/Dockerfile +++ b/alpine/Dockerfile @@ -27,9 +27,9 @@ RUN set -eux; \ chmod +x /usr/local/wait-for-port-1.0.0-1-linux-amd64-debian-10/files/common/bin/wait-for-port; RUN set -eux; \ - appVersion=6.0.5; \ + appVersion=6.0.8; \ appName="redis-${appVersion}.tar.gz"; \ - sha256="42cf86a114d2a451b898fcda96acd4d01062a7dbaaad2801d9164a36f898f596"; \ + sha256="04fa1fddc39bd1aecb6739dd5dd73858a3515b427acd1e2947a66dadce868d68"; \ [ ! -z ${local_url} ] && localURL=${local_url}/redis; \ appUrls="${localURL:-} \ http://download.redis.io/releases \ @@ -68,7 +68,7 @@ ARG local_url="" ENV APP_NAME=redis \ APP_USER=redis \ APP_EXEC=redis-server \ - APP_VERSION=6.0.5 + APP_VERSION=6.0.8 ENV APP_HOME_DIR=/usr/local/${APP_NAME} \ APP_DEF_DIR=/etc/${APP_NAME} \