Posted on 18th May 202318th May 2023VS Code and Git and Docker Download a git project from github. Create Visual Studio project workspae Build containers Commands in powershell (in the new empty project folder): PowerShell # download the code git clone https://github.com/docker/welcome-to-docker # enter to project folder cd .\welcome-to-docker\ # open it in Visual Studio Code code . # build the container docker build -t welcome-to-docker . # yo can start it in Docker Desktop 12345678910111213 # download the codegit clone https://github.com/docker/welcome-to-docker # enter to project foldercd .\welcome-to-docker\ # open it in Visual Studio Codecode . # build the containerdocker build -t welcome-to-docker . # yo can start it in Docker Desktop Docker Visual Studio Code