Use latest redis docker image

We use the latest Redis image because in Cookiecutter Django, Redis
is only used to store ephemeral data. By ephemeral data I mean
Celery tasks and various caching libraries.
This commit is contained in:
Daniel Roy Greenfeld 2016-06-13 14:10:23 -07:00
parent ad4082ceae
commit 36c58f1d2c

View File

@ -57,7 +57,7 @@ services:
{% endif %}
redis:
image: redis:3.0
image: redis:latest
{% if cookiecutter.use_celery == 'y' %}
celeryworker:
build: