From 5d27e362c136fcd917a84ccef0b88d1fb2f0e28d Mon Sep 17 00:00:00 2001 From: "a.shibata" Date: Fri, 12 Mar 2021 23:42:10 +0900 Subject: [PATCH] docs: upgrade redis to redis:5.0.9 --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 52381bfc..9c25e311 100644 --- a/README.md +++ b/README.md @@ -180,7 +180,7 @@ Step 2. Launch a redis container ```bash docker run --name gitlab-redis -d \ --volume /srv/docker/gitlab/redis:/var/lib/redis \ - sameersbn/redis:4.0.9-2 + redis:5.0.9 ``` Step 3. Launch the gitlab container @@ -359,7 +359,7 @@ To illustrate linking with a redis container, we will use the [sameersbn/redis]( First, lets pull the redis image from the docker index. ```bash -docker pull sameersbn/redis:4.0.9-2 +docker pull redis:5.0.9 ``` Lets start the redis container @@ -367,7 +367,7 @@ Lets start the redis container ```bash docker run --name gitlab-redis -d \ --volume /srv/docker/gitlab/redis:/var/lib/redis \ - sameersbn/redis:4.0.9-2 + redis:5.0.9 ``` We are now ready to start the GitLab application.