Introduction
오늘 저는 redis 구성을 수정하고 싶었지만 기본 설치 중에 redis 구성이 추가되지 않은 것을 발견했습니다. 따라서 구성을 다시 설치하십시오.
Dockerfile 수정
redis/Dockerfile을 다음과 같이 수정하세요
FROM redis:latest LABEL maintainer="Mahmoud Zalt <mahmoud@zalt.me>" ## For security settings uncomment, make the dir, copy conf, and also start with the conf, to use it RUN mkdir -p /usr/local/etc/redis COPY redis.conf /usr/local/etc/redis/redis.conf VOLUME /data EXPOSE 6379 CMD ["redis-server", "/usr/local/etc/redis/redis.conf"] #CMD ["redis-server"]
Edit 구성 파일
기본적으로 redis 디렉터리에 redis.conf 파일이 있습니다. 다음 두 가지 점만 수정해주세요
Comment 바인딩 127.0.0.1
protected-mode selected to no
requirepass 비밀번호 설정
기타 구성은 상황에 따라 수정 가능합니다. ㅋㅋㅋ -com 포즈를 취하다 -d redis
는 정상적인 상황에서 성공적으로 시작됩니다.
"
위 내용은 Laradock에 Redis 구성을 추가하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!