1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-20 22:08:39 +00:00

add redis-arm

This commit is contained in:
kev 2016-01-16 07:54:16 +08:00
parent 3cd51c7cbc
commit d852efc40a
4 changed files with 21 additions and 1 deletions

@ -67,6 +67,7 @@ dockerfiles
- [x] privoxy
- [x] proxyhub
- [x] pure-ftpd
- [x] redis-arm
- [x] revive
- [x] rsyncd
- [x] samba :beetle:

@ -7,7 +7,7 @@ nodebb:
restart: always
redis:
image: redis
image: vimagick/redis-arm
ports:
- "127.0.0.1:6379:6379"
restart: always

17
redis-arm/Dockerfile Normal file

@ -0,0 +1,17 @@
#
# Dockerfile for redis-arm
#
FROM vimagick/alpine-arm
MAINTAINER kev <noreply@datageek.info>
RUN set -ex \
&& apk add -U redis \
&& sed -i 's/^daemonize yes/daemonize no/' /etc/redis.conf \
&& rm -rf /var/cache/apk/*
VOLUME /var/lib/redis/
EXPOSE 6379
CMD ["redis-server"]

2
redis-arm/README.md Normal file

@ -0,0 +1,2 @@
redis-arm
=========