From e408e34a0f398b7c3fa82581008ec85b89860e2b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EB=AF=BC=ED=97=8C?= Date: Mon, 6 Jul 2026 13:43:15 +0900 Subject: [PATCH] =?UTF-8?q?chore(compose):=20anchoring-redis=20=ED=98=B8?= =?UTF-8?q?=EC=8A=A4=ED=8A=B8=20=ED=8F=AC=ED=8A=B8=206380=20=EC=9C=BC?= =?UTF-8?q?=EB=A1=9C=20(=ED=98=B8=EC=8A=A4=ED=8A=B8=20redis=206379=20?= =?UTF-8?q?=EC=B6=A9=EB=8F=8C=20=ED=9A=8C=ED=94=BC)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 컨테이너 내부 통신은 6379 그대로 — 호스트에서 직접 접속할 때만 6380. 로컬에 homebrew redis(6379) 가 떠 있어도 스택이 뜬다. Co-Authored-By: Claude Fable 5 --- docker-compose.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker-compose.yml b/docker-compose.yml index 72f40bc..23ebab2 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -107,7 +107,7 @@ services: image: redis:7-alpine container_name: anchoring-redis ports: - - "127.0.0.1:6379:6379" # 호스트 로컬만 개방 (무인증 Redis) + - "127.0.0.1:6380:6379" # 호스트 로컬만 개방 (무인증 Redis). 6380 = 호스트 redis(6379)와 충돌 회피 restart: unless-stopped logging: driver: json-file