Skip to content

Commit

Permalink
feat: add docker-compose.yml redis
Browse files Browse the repository at this point in the history
  • Loading branch information
GaBaljaintheroom committed Jan 17, 2023
1 parent 79718e4 commit 82ae4b7
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,13 @@ services:
"threads",
]

redis:
image: redis:alpine # 경량화된 레디스 버전
command: redis-server --port 6379 #redis서버 오픈 명령어
ports:
- 6379:6379 # 호스트 포트:컨테이너 포트
networks:
- app-tier


networks:
Expand Down

0 comments on commit 82ae4b7

Please sign in to comment.