docs: upgrade redis to redis:5.0.9

This commit is contained in:
a.shibata 2021-03-12 23:42:10 +09:00
parent c240c5eb4f
commit 5d27e362c1

View File

@ -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.