FROM alpine:3.12 LABEL author="Serge NOEL " 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