feat: 集成redis

This commit is contained in:
gua
2023-11-22 14:08:27 +08:00
parent 0789456304
commit fbfe7f3226
8 changed files with 133 additions and 2 deletions
+5
View File
@@ -0,0 +1,5 @@
FROM redis:7-alpine
RUN mkdir -p /run/redis-socket && chmod 777 /run/redis-socket
COPY ./redis.conf /etc/redis.conf
CMD ["redis-server", "/etc/redis.conf"]