0
1

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 1 year has passed since last update.

Webアプリケーション開発環境構築(Docker+VSCode)

Last updated at Posted at 2023-01-22

Webアプリケーション開発環境構築(Docker+VSCode)

自分用の勉強メモ

1.前提条件

  • Windows 11 Pro

2.追加機能

  • WSL2
  • Docker Desktop
  • VS Code

3.WSLを有効にする

WSLのインストール

PowerShellを管理者モードで起動する。

PowerShell
wsl --install

PCを再起動する。

ディストリビューションを一覧表示する。

PowerShell
wsl -l -v

接続する。

PowerShell
wsl

OSの情報を確認する。

Linux
$ cat /etc/os-release

アップデートを行う。(たまに手動で行う)

Linux
$ sudo apt update && sudo apt upgrade
参考サイト

4.Dockerをインストールする

「Use WSL 2 instead of Hyper-V (recommended)」にチェックを入れたままにする。
image.png

設定を変更する。
「Start Docker Desktop when you log in」のチェックを外す。(ログイン時に起動しないように)
image.png

起動する。

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

ブラウザでアクセスする。

http://localhost/
参考サイト

5.VS Codeをインストールする

以下を追加する。

  • Japanese Language Pack for Visual Studio Code
  • Prettier - Code formatter
  • indent-rainbow
  • Material Icon Theme
  • zenkaku
  • Dev Containers
参考&引用:
0
1
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
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?