2
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2025-12-24 06:28:23 +01:00
Files
dockerfiles_vimagick/redis/arm/Dockerfile
2017-05-10 17:14:07 +08:00

17 lines
250 B
Docker

#
# Dockerfile for redis-arm
#
FROM easypi/alpine-arm
MAINTAINER EasyPi Software Foundation
RUN apk add --no-cache redis
WORKDIR /data
VOLUME /data
EXPOSE 6379
ENTRYPOINT ["redis-server"]
CMD ["--protected-mode", "no", "--save", "900 1 300 10"]