diff --git a/.gitlab/ci/custom.images.yml b/.gitlab/ci/custom.images.yml index aa0cd5c..3402672 100644 --- a/.gitlab/ci/custom.images.yml +++ b/.gitlab/ci/custom.images.yml @@ -79,3 +79,6 @@ postgres-15-pgvector-0.4.1: redis-cluster-6.2.12: extends: .build_static_image + +redis-cluster-7.0.11: + extends: .build_static_image diff --git a/Dockerfile.redis-cluster-7.0.11 b/Dockerfile.redis-cluster-7.0.11 new file mode 100644 index 0000000..6e59da9 --- /dev/null +++ b/Dockerfile.redis-cluster-7.0.11 @@ -0,0 +1,9 @@ +FROM redis:7.0.11 + +COPY scripts/run-redis-cluster /docker-entrypoint.sh + +RUN chmod 755 /docker-entrypoint.sh + +EXPOSE 7001 7002 7003 + +ENTRYPOINT ["/docker-entrypoint.sh"]