Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

RefreshToken을 Redis로 마이그레이션 #750

Merged
merged 13 commits into from
Nov 15, 2023
Prev Previous commit
Next Next commit
chore: redis container 생성
  • Loading branch information
jjongwa committed Nov 14, 2023
commit f13f569039100c557b0be456ae30e17dc04a873c
11 changes: 11 additions & 0 deletions backend/docker/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -16,3 +16,14 @@ services:
- ./db/mysql/data:/var/lib/mysql
- ./db/mysql/config:/etc/mysql/conf.d
- ./db/mysql/init:/docker-entrypoint-initdb.d

redis:
image: redis:alpine
command: redis-server --port 6379
container_name: hanglog_redis
hostname: root
labels:
- "name=redis"
- "mode=standalone"
ports:
- 16379:6379