Skip to content

[Fix] 배포 환경에서 채팅 시간이 9시간 빠르게 표시되는 문제 수정 #357

Merged
JuJangGwon merged 1 commit intodevfrom
fix/#356-timezone
Feb 5, 2026
Merged

[Fix] 배포 환경에서 채팅 시간이 9시간 빠르게 표시되는 문제 수정 #357
JuJangGwon merged 1 commit intodevfrom
fix/#356-timezone

Conversation

@JuJangGwon
Copy link
Copy Markdown
Collaborator

🔗 관련 이슈

Closes #356

✅ 작업 내용

Docker 컨테이너의 타임존을 UTC에서 Asia/Seoul(KST)로 변경

Docker 컨테이너는 기본적으로 UTC(UTC+0) 타임존을 사용하기에 한국 시간과 9시간 차이 발생 합니다. 그래서 타임존을 Asia/Seoul로 설정했습니다

...
# -------- Runtime image --------
FROM node:20-alpine AS runner
WORKDIR /app
ENV NODE_ENV=production

# 타임존 설정 추가
RUN apk add --no-cache tzdata
ENV TZ=Asia/Seoul

...

@JuJangGwon JuJangGwon added 🔥 fix Something isn't working 🛠️ BE Extra attention is needed labels Feb 4, 2026
@JuJangGwon JuJangGwon merged commit aaa850e into dev Feb 5, 2026
2 checks passed
@JuJangGwon JuJangGwon deleted the fix/#356-timezone branch February 5, 2026 01:31
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

🛠️ BE Extra attention is needed 🔥 fix Something isn't working

Projects

None yet

Development

Successfully merging this pull request may close these issues.

[Fix] 배포 환경에서 채팅 시간이 9시간 빠르게 표시되는 문제

4 participants