containers-rspamd/Dockerfile

21 lines
684 B
Docker
Raw Normal View History

2019-09-10 23:10:18 +00:00
FROM sutty/monit:latest
MAINTAINER "f <f@sutty.nl>"
2019-09-10 23:23:34 +00:00
RUN apk add --no-cache redis
2019-09-10 23:23:34 +00:00
COPY ./monit.conf /etc/monit.d/redis.conf
RUN sed -re "/^bind /d" -i /etc/redis.conf
RUN sed -re "/^protected-mode /d" -i /etc/redis.conf
RUN sed -re "/^logfile /d" -i /etc/redis.conf
RUN sed -re "s/^# (syslog-enabled).*/\1 yes/" -i /etc/redis.conf
RUN sed -re "s/^(appendonly).*/\1 yes/" -i /etc/redis.conf
RUN echo "pidfile /run/redis/redis.pid" >> /etc/redis.conf
RUN echo "daemonize yes" >> /etc/redis.conf
2019-09-18 00:58:31 +00:00
RUN echo "protected-mode no" >> /etc/redis.conf
RUN echo "maxmemory-policy allkeys-lfu" >> /etc/redis.conf
RUN echo "maxmemory 50mb" >> /etc/redis.conf
2019-09-10 23:23:34 +00:00
EXPOSE 6379
VOLUME "/var/lib/redis"