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?

More than 3 years have passed since last update.

Dockerの導入手順

Last updated at Posted at 2021-07-03

##概要
軽量な仮想化環境を実現するためのツール。
環境の違いを意識することなく簡単にアプリケーションを導入できる。

##公式サイト
https://www.docker.io/

##Dockerのインストール手順
1.メニューの「Docker Desktop」を選択する。
1.PNG

2.「Download for Windows」をクリックする。
2.PNG

3.ダウンロードしたファイルを実行する。
 WSL2というソフトは必要なのでチェックを入れてOK。
3.PNG

4.インストールが終わったらPCを再起動する。
4.PNG

##WSL2のインストール手順
1.https://docs.microsoft.com/ja-jp/windows/wsl/install-win10#step-4---download-the-linux-kernel-update-package
 でパッケージをインストールし、実行する。
5.PNG

##Dockerの起動
1.コマンドラインで

docker run -d -p 80:80 docker/getting-started

を入力する。

##Ubuntuのインストール
1.PowerShellを開き

wsl --set-default-version 2

を実行する。

2.https://aka.ms/wslstore
 からUbuntuをインストールする。
7.PNG

3.インストールが終わったらUbuntuを起動し、ユーザー名、パスワードを入力する。
8.PNG

##DockerとUbuntuの統合
1.Dockerを右クリックし「Setting」を選択する
9.PNG

2.「Resources > WSL INTEGRATION」を選択し、「Ubuntu」をONにする。

##VSCodeの設定
1.VSCodeのターミナルを開き、PowerShellをUbuntu変更する。

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?