Answers for "redis.conf not working docker"

0

redis.conf not working docker

redis:
  image: redis:alpine
    command: redis-server --include /usr/local/etc/redis/redis.conf
    volumes:
      - ./redis/redis.conf:/usr/local/etc/redis/redis.conf
Posted by: Guest on April-28-2022
0

redis.conf not working docker

FROM redis
COPY redis.conf /usr/local/etc/redis/redis.conf
CMD [ "redis-server", "/usr/local/etc/redis/redis.conf" ]
Posted by: Guest on April-28-2022
0

redis.conf not working docker

#/bin/redis/Dockerfile
FROM redis
CMD ["redis-server", "--include /usr/local/etc/redis/redis.conf"]
Posted by: Guest on April-28-2022

Browse Popular Code Answers by Language