- Download a git project from github.
- Create Visual Studio project workspae
- Build containers
Commands in powershell (in the new empty project folder):
1 2 3 4 5 6 7 8 9 10 11 12 13 |
# 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 |