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?

UbuntuサーバーにDockerをインストールする手順

Posted at

はじめに

  • この記事ではUbuntuサーバーにDockerとDocker ComposeをインストールしてDocker Composeでコンテナを起動するところまでの設定方法を記述します。

設定手順

  • システムのアップデートと必要パッケージのインストール
    Dockerのインストールに必要なパッケージをインストールします。
sudo apt-get update
sudo apt-get install -y ca-certificates curl gnupg lsb-release
  • Docker公式のGPGキーを追加する
    Dockerリポジトリを安全に利用するため、公式GPGキーを取得して登録します。
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg --dearmor -o /usr/share/keyrings/docker-archive-keyring.gpg
  • Dockerのリポジトリを追加する
    安定版リポジトリをシステムに追加します。
echo \
  "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/docker-archive-keyring.gpg] https://download.docker.com/linux/ubuntu \
  $(lsb_release -cs) stable" | sudo tee /etc/apt/sources.list.d/docker.list > /dev/null
  • Docker Engine と Docker Composeプラグインのインストール
    リポジトリを追加した後、再度パッケージリストを更新し、必要なパッケージをインストールします。
sudo apt-get update
sudo apt-get install -y docker-ce docker-ce-cli containerd.io docker-compose-plugin
  • 現在のユーザーをdockerグループに追加する
    dockerコマンドをsudoなしで実行できるよう、ユーザーをdockerグループに追加します。
sudo usermod -aG docker $USER

グループ変更を反映させるため、ログアウトして再度ログインする必要があります

  • Docker Composeでコンテナを起動する
    作業ディレクトリ(どこであっても構いません)にdocker-compose.ymlファイルを配置して、以下のコマンドでバックグラウンド実行でコンテナを立ち上げます。
docker compose up -d

まとめ

  • 今回はUbuntuサーバーでのDockerのインストール手順をまとめました。
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?