From 4b9a03a1105cc734439d85f6abde2a1ebd4ae4bb Mon Sep 17 00:00:00 2001
From: techknowlogick <matti@mdranta.net>
Date: Sun, 2 Feb 2020 09:10:04 +0100
Subject: [PATCH] Update docker-compose.yml to use redis v5 Fix #1021

---
 .gitlab-ci.yml            | 2 +-
 deploy/docker-compose.yml | 2 +-
 dev.yml                   | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 57294d72b6..3aa4cc56b5 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -120,7 +120,7 @@ test_api:
   interruptible: true
   services:
     - postgres:11
-    - redis:3
+    - redis:5
   stage: test
   image: funkwhale/funkwhale:develop
   cache:
diff --git a/deploy/docker-compose.yml b/deploy/docker-compose.yml
index 0a4be1674e..b98555ef20 100644
--- a/deploy/docker-compose.yml
+++ b/deploy/docker-compose.yml
@@ -15,7 +15,7 @@ services:
     networks:
       - default
     env_file: .env
-    image: redis:3
+    image: redis:5
     volumes:
       - ./data/redis:/data
 
diff --git a/dev.yml b/dev.yml
index 630ab68eca..a85853fff8 100644
--- a/dev.yml
+++ b/dev.yml
@@ -33,7 +33,7 @@ services:
     env_file:
       - .env.dev
       - .env
-    image: redis:3.0
+    image: redis:5
     volumes:
       - "./data/${COMPOSE_PROJECT_NAME-node1}/redis:/data"
     networks:
-- 
GitLab