xrg.es/docker/Dockerfile.redis

7 lines
145 B
Docker

FROM redis:latest
COPY docker/redis.conf /usr/local/etc/redis/redis.conf
EXPOSE 6379
CMD [ "redis-server", "/usr/local/etc/redis/redis.conf" ]