0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

【Docker】AlmaLinuxでOSのタイムゾーンを変更する

Posted at

はじめに

Dockerコンテナで動作するAlmaLinuxのタイムゾーンを変更したい場合、デフォルトではUTCが使用されています。この記事では、タイムゾーンをAsia/Tokyoに変更する方法を説明します。

タイムゾーン変更の概要

Linuxシステムでは、タイムゾーンは通常/etc/localtimeで設定されます。このファイルは、適切なタイムゾーン設定を参照するシンボリックリンクとして構成されます。タイムゾーンを変更するには、以下のディレクトリにあるタイムゾーンファイルをリンクする必要があります:

/usr/share/zoneinfo/

例えば、Asia/Tokyoのタイムゾーンに変更するには、次のファイルをリンクします:

/usr/share/zoneinfo/Asia/Tokyo

Dockerfileでタイムゾーンを変更する手順

Dockerfileに以下のコードを記載します。

Dockerfile例:

# 必要なパッケージをインストール
RUN dnf install -y tzdata && \
    ln -sf /usr/share/zoneinfo/Asia/Tokyo /etc/localtime
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?