Intermédiaire

This commit is contained in:
2021-04-02 11:26:26 +02:00
parent d2eefb6b5f
commit 0c681bf4ff
559 changed files with 39669 additions and 49754 deletions

10
Docker/Redis/Dockerfile Normal file
View File

@@ -0,0 +1,10 @@
FROM alpine:3.12
LABEL author="Serge NOEL <serge.noel@easylinux.fr>"
RUN apk add redis
RUN sed -i "s/bind 127.0.0.1/#bind 127.0.0.1/g" /etc/redis.conf \
&& sed -i "s|logfile /var/log/redis/redis.log|logfile /dev/stdout|g" /etc/redis.conf
EXPOSE 6379
VOLUME /var/lib/redis