feat(redis): use bitnami image

This commit is contained in:
Gergő Móricz
2024-08-22 23:37:52 +02:00
parent 8d9ff90bcb
commit 64e9be0cd4
9 changed files with 385 additions and 6 deletions
+6
View File
@@ -0,0 +1,6 @@
ARG REDIS_VERSION=7.2.5
FROM bitnami/redis:${REDIS_VERSION}
COPY start-redis-server.sh /usr/bin/start-redis-server.sh
CMD ["/usr/bin/start-redis-server.sh"]