mirror of
https://github.com/vimagick/dockerfiles.git
synced 2024-12-14 11:23:34 +02:00
16 lines
186 B
Docker
16 lines
186 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
|
|
|
|
CMD ["redis-server"]
|