How to setup Docker container with Redis (Stack) server to use a configuration file?
I need to run a Docker container with Redis Stack pre-configured to use a config file and ACL file. My Dockerfile (placed in the same folder as the redis.conf and users.acl) is as follows: FROM redis/redis-stack:latest WORKDIR /db COPY redis.conf…