mirror of
https://ops.gitlab.net/gitlab-org/gitlab-build-images.git
synced 2025-12-08 17:42:56 +01:00
9 lines
170 B
Docker
9 lines
170 B
Docker
FROM redis:6.2.12
|
|
|
|
COPY scripts/run-redis-cluster /docker-entrypoint.sh
|
|
|
|
RUN chmod 755 /docker-entrypoint.sh
|
|
|
|
EXPOSE 7001 7002 7003
|
|
|
|
ENTRYPOINT ["/docker-entrypoint.sh"]
|