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

18 lines
307 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
RUN set -ex \
2016-07-19 08:34:20 +00:00
&& apk add --no-cache redis \
&& sed -i 's/^daemonize yes/daemonize no/' /etc/redis.conf
2016-01-15 23:54:16 +00:00
2016-01-16 04:08:37 +00:00
WORKDIR /var/lib/redis/
2016-01-15 23:54:16 +00:00
VOLUME /var/lib/redis/
EXPOSE 6379
2016-01-16 04:08:37 +00:00
CMD ["redis-server", "/etc/redis.conf"]