mirror of
https://github.com/vimagick/dockerfiles.git
synced 2024-11-28 09:08:50 +02:00
update redis
This commit is contained in:
parent
f9c54988ec
commit
a59f35451e
@ -7,7 +7,9 @@ nodebb:
|
||||
restart: always
|
||||
|
||||
redis:
|
||||
image: redis
|
||||
image: redis:alpine
|
||||
ports:
|
||||
- "127.0.0.1:6379:6379"
|
||||
volumes:
|
||||
- ./data:/data
|
||||
restart: always
|
||||
|
@ -5,13 +5,11 @@
|
||||
FROM easypi/alpine-arm
|
||||
MAINTAINER EasyPi Software Foundation
|
||||
|
||||
RUN set -ex \
|
||||
&& apk add --no-cache redis \
|
||||
&& sed -i 's/^daemonize yes/daemonize no/' /etc/redis.conf
|
||||
RUN apk add --no-cache redis
|
||||
|
||||
WORKDIR /var/lib/redis/
|
||||
VOLUME /var/lib/redis/
|
||||
WORKDIR /data
|
||||
VOLUME /data
|
||||
|
||||
EXPOSE 6379
|
||||
|
||||
CMD ["redis-server", "/etc/redis.conf"]
|
||||
CMD ["redis-server"]
|
||||
|
@ -2,4 +2,6 @@ redis:
|
||||
image: easypi/redis-arm
|
||||
ports:
|
||||
- "6379:6379"
|
||||
volumes:
|
||||
- ./data:/var/lib/redis
|
||||
restart: always
|
||||
|
Loading…
Reference in New Issue
Block a user