Skip to content

Commit

Permalink
Feat: 테스트용 도커 컴포즈 파일 작성
Browse files Browse the repository at this point in the history
Related to: #5
  • Loading branch information
pjh5365 committed Sep 3, 2024
1 parent b022753 commit b1e244e
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions docker-compose-auth-test-db.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# 테스트 DB 환경 세팅
services:
redis:
image: redis:alpine
container_name: redis
ports:
- "6379:6379"
networks:
- testNet

networks:
testNet:
name: testNet # 네트워크 이름 지정
driver: bridge # 브릿지 모드
attachable: true # 외부접속 허용

0 comments on commit b1e244e

Please sign in to comment.