This is an automated email from the ASF dual-hosted git repository.

potiuk pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git


The following commit(s) were added to refs/heads/main by this push:
     new cd88ddb4f1 Limit redis image to 7.2 in sample docker-compose.yaml 
(#38938)
cd88ddb4f1 is described below

commit cd88ddb4f1617e3d9855e8927d3d7aa4b6daea9a
Author: Andrey Anshin <andrey.ans...@taragol.is>
AuthorDate: Thu Apr 11 22:58:47 2024 +0400

    Limit redis image to 7.2 in sample docker-compose.yaml (#38938)
---
 docs/apache-airflow/howto/docker-compose/docker-compose.yaml | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/docs/apache-airflow/howto/docker-compose/docker-compose.yaml 
b/docs/apache-airflow/howto/docker-compose/docker-compose.yaml
index 9effc2d504..92b0eab937 100644
--- a/docs/apache-airflow/howto/docker-compose/docker-compose.yaml
+++ b/docs/apache-airflow/howto/docker-compose/docker-compose.yaml
@@ -102,7 +102,9 @@ services:
     restart: always
 
   redis:
-    image: redis:latest
+    # Redis is limited to 7.2-bookworm due to licencing change
+    # https://redis.io/blog/redis-adopts-dual-source-available-licensing/
+    image: redis:7.2-bookworm
     expose:
       - 6379
     healthcheck:

Reply via email to