Skip to content

Commit

Permalink
Merge pull request #67 from Team-Tiki/feat/#39-email-verification
Browse files Browse the repository at this point in the history
[CHORE] 도커 컴포즈 수정
  • Loading branch information
paragon0107 authored Jul 14, 2024
2 parents 0537613 + f488960 commit 16e6c96
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 3 deletions.
24 changes: 23 additions & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,28 @@ services:
- "6379:6379"
networks:
- tiki-network
blue:
container_name: blue
image: hellotiki/dev
expose:
- 8080
ports:
- "8080:8080"
environment:
- TZ=Asia/Seoul
depends_on:
- redis
green:
container_name: green
image: hellotiki/dev
expose:
- 8080
ports:
- "8081:8080"
environment:
- TZ=Asia/Seoul
depends_on:
- redis
networks:
tiki-network:
external: true
external: true
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
public record MemberProfileCreateRequest(
@NonNull String name,
@NonNull LocalDate birth,
@NonNull University Univ,
@NonNull University univ,
@NonNull String email,
@NonNull String password,
@NonNull String passwordChecker
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ private Member createMember(MemberProfileCreateRequest request) {
passwordEncoder.encode(request.password()),
request.name(),
request.birth(),
request.Univ());
request.univ());
}

private void saveMember(Member member) {
Expand Down

0 comments on commit 16e6c96

Please sign in to comment.