From a43ad6dca36f5038b970ada051c04cf1ebdbdb05 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjamin=20N=C3=B8rgaard?= Date: Tue, 16 Jun 2015 22:42:12 +0200 Subject: [PATCH] Correct redis instructions in README --- README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index bc73d1b0..ad9bb137 100644 --- a/README.md +++ b/README.md @@ -424,7 +424,6 @@ The image can be configured to use an external redis server. The configuration s ```bash docker run --name=gitlab -it --rm \ --env='REDIS_HOST=192.168.1.100' --env='REDIS_PORT=6379' \ - --volume=/srv/docker/gitlab/redis:/var/lib/redis \ sameersbn/gitlab:7.11.4-1 ``` @@ -443,7 +442,9 @@ docker pull sameersbn/redis:latest Lets start the redis container ```bash -docker run --name=redis-gitlab -d sameersbn/redis:latest +docker run --name=redis-gitlab -d \ + --volume=/srv/docker/gitlab/redis:/var/lib/redis \ + sameersbn/redis:latest ``` We are now ready to start the GitLab application.