skip to Main Content

Redis – Extending docker image

I want to extend the existing redis:6.0-alpine image from docker-hub and want to add my configuration file in the container. For that I've created this dockerfile FROM redis:6.0-alpine WORKDIR . COPY redis.master.conf ./config/redis.conf but when building a container from this…

VIEW QUESTION
Back To Top
Search