mirror of
https://github.com/optim-enterprises-bv/kubernetes.git
synced 2025-12-15 20:37:39 +00:00
18 lines
236 B
Docker
18 lines
236 B
Docker
#
|
|
# Redis Dockerfile
|
|
#
|
|
# https://github.com/dockerfile/redis
|
|
#
|
|
|
|
# Pull base image.
|
|
#
|
|
# Just a stub.
|
|
|
|
FROM redis
|
|
|
|
ADD etc_redis_redis.conf /etc/redis/redis.conf
|
|
|
|
CMD ["redis-server", "/etc/redis/redis.conf"]
|
|
# Expose ports.
|
|
EXPOSE 6379
|