1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-30 18:51:24 +00:00
dockerfiles/redis/arm/Dockerfile

16 lines
186 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-01-19 17:29:07 +00:00
CMD ["redis-server"]