fixed docs to get redis working

thanks to @bobberb for pointing in the right direction.
This commit is contained in:
Marvin Steadfast
2016-10-13 11:18:24 +02:00
parent af6c68a312
commit af2fb30389

View File

@ -66,7 +66,7 @@ $ docker run --name wallabag --link wallabag-db:wallabag-db -e "POSTGRES_PASSWOR
To use redis support a linked redis container with the name `redis` is needed. To use redis support a linked redis container with the name `redis` is needed.
``` ```
$ docker run -p 6379:6379 redis:alpine redis $ docker run -p 6379:6379 --name redis redis:alpine
$ docker run -p 80:80 --link redis:redis wallabag/wallabag $ docker run -p 80:80 --link redis:redis wallabag/wallabag
``` ```