Disabled persistency in Redis (#214)

Co-authored-by: Adam Bem <adam.bem@zoho.eu>
Reviewed-on: #214
Reviewed-by: Mikolaj Widla <widlam@noreply.example.com>
This commit is contained in:
2023-05-30 15:27:15 +02:00
parent 66b20f8256
commit 7318708bd2
2 changed files with 8 additions and 1 deletions

6
Redis/Dockerfile Normal file
View File

@@ -0,0 +1,6 @@
FROM redis:latest
EXPOSE 6379
# COPY redis.conf /usr/local/etc/redis/redis.conf
CMD [ "redis-server", "--save ''", "--appendonly no" ]