1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-28 09:41:20 +00:00
dockerfiles/redis/arm/Dockerfile

17 lines
224 B
Docker
Raw Normal View History

2016-01-15 23:54:16 +00:00
#
# Dockerfile for redis-arm
#
2016-07-19 08:34:20 +00:00
FROM easypi/alpine-arm
MAINTAINER EasyPi Software Foundation
2016-01-15 23:54:16 +00:00
2017-01-19 17:29:07 +00:00
RUN apk add --no-cache redis
2016-01-15 23:54:16 +00:00
2017-01-19 17:29:07 +00:00
WORKDIR /data
VOLUME /data
2016-01-15 23:54:16 +00:00
EXPOSE 6379
2017-05-10 04:35:16 +00:00
ENTRYPOINT ["redis-server"]
CMD ["--protected-mode", "no"]