18 lines
254 B
Docker
18 lines
254 B
Docker
#
|
|
# Redis Dockerfile
|
|
#
|
|
# https://github.com/dockerfile/redis
|
|
#
|
|
|
|
# Pull base image.
|
|
#
|
|
# Just a stub.
|
|
|
|
FROM jayunit100/redis:2.8.19
|
|
|
|
ADD etc_redis_redis.conf /etc/redis/redis.conf
|
|
|
|
CMD ["redis-server", "/etc/redis/redis.conf"]
|
|
# Expose ports.
|
|
EXPOSE 6379
|