- Docker의 이미지에는 최소한의 기능만 포함되어 추가로 설정해야할 정보가 있다.
- Date를 실행하여 UTC로 표시된 경우 KST로 변경할 수 있다.
- TimeZone을 Seoul로 변경하려면 다음과 같이 명령이 필요하다.
tzselect export TZ='Asia/Seoul'
- 다른 방법으로는 docker run 파라매터로 timezone에 관련된 directory를 volume mount 하는 방법이 있다.
docker run [other parameters] -v /etc/timezone:/etc/timezone -v /etc/localtime:/etc/localtime
덧글을 달아 주세요