Skip to content

Commit

Permalink
Merge pull request #170 from dougthor42/pin-redis-gh163
Browse files Browse the repository at this point in the history
Pin Redis version
  • Loading branch information
dougthor42 committed Jul 11, 2019
2 parents fec79c2 + 4a4cd02 commit 9c49409
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
+ *Actually* fixed the issue where the plots wouldn't show when `URL_PREFIX`
was set (running behind a proxy). (#162).
+ Of course, there's another part which is **not** fixed (#168)
+ Redis was pinned at v5.0.5-alpine. (#163)


## 0.6.0b2 (2019-06-27)
Expand Down
2 changes: 1 addition & 1 deletion docker-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ services:
- "redis"

redis:
image: redis
image: redis:5.0.5-alpine
ports:
- "6379:6379"

Expand Down
2 changes: 1 addition & 1 deletion docker/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ services:
- "redis"

redis:
image: redis
image: redis:5.0.5-alpine
ports:
- "6379:6379"

Expand Down
2 changes: 1 addition & 1 deletion docs/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ Add the following services to your ``docker-compose.yml``:
.. code-block:: yaml
redis:
image: redis
image: redis:5.0.5-alpine
ports:
- "6379:6379"
celery:
Expand Down
2 changes: 1 addition & 1 deletion tests/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ services:
- redis

redis:
image: redis
image: redis:5.0.5-alpine
ports:
- "6379:6379"
depends_on:
Expand Down

0 comments on commit 9c49409

Please sign in to comment.