mirror of
https://github.com/vimagick/dockerfiles.git
synced 2025-01-10 04:07:04 +02:00
17 lines
224 B
Docker
17 lines
224 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
|
|
|
|
ENTRYPOINT ["redis-server"]
|
|
CMD ["--protected-mode", "no"]
|