LoginSignup
0
0

More than 3 years have passed since last update.

[AWS] -- Architecture Supporter[2] -- Setting Local Development Environment

Last updated at Posted at 2020-12-04

At first.

This content is written by AWS Beginner.
So this content is a possibility that isn't Best Practice.
Please read this content as reference information.

Work on this article.

  • Install "Docker" on Windows.
  • Install "Visual Studio Code".
  • Setup Docker.
  • Setup Visual Studio Code.
  • Try connecting from Visual Studio Code to Docker.

My PC Environment.

  • Windows10 Home

1.Install "Docker" on Windows

(1) Open the page of 「"Download for Docker Installer"」.
(2) Click 「Docker Desktop for Windows」 --> Download Installer Exe File.
(3) Execute Installer.
※Installer is very simple. So, No description.

2.Install "Visual Studio Code" on Windows

(1) Open the page of 「"Download Visual Studio Code"]」.
(2) Click 「Windows(Widnwos 7,8,10)」
(3) Execute Installer.
(4) Setup added task.
vsinstalle.png
(5) Click "Next" and "Install" and "Finish".

3. Install Visual Studio Code extend function.

(1) Search "Docker" extension function And click install.
docker.png
(2) Search "Remote Container" extension function and click install.
remotecontainer.png

4. Create a Docker Image File.

(1) Create a Workspace directory.
I create a directory that name is "work".
 ※Name is any.
 ※This sample has created a directory under "C Drive"
(2) Create "DockerFile" in Created The directory.
DockerFile content is below.

Dockerfile
FROM node:lts-alpine

WORKDIR c:\\work

・・・

・・・Sorry, this content is not completed.
・・・today is the end.
・・・to be continue...


◆Related article

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