Updated 03. Setting the eShopOnContainers solution up in a Windows CLI environment (dotnet CLI, Docker CLI and VS Code) (markdown)

Cesar De la Torre 2018-01-02 18:23:42 -08:00
parent 07d5b76033
commit 3c74534f1f

@ -137,6 +137,15 @@ The first time you run this command it'll take some more additional time as it n
It should take a few minutes to compile the .NET Core projects plus the SPA application (TypeScript/JavaScript). It should take a few minutes to compile the .NET Core projects plus the SPA application (TypeScript/JavaScript).
- You can check out with Docker CLI the images created by typing in the PowerShell console the command:
`docker images`
![image](https://user-images.githubusercontent.com/1712635/34507282-5f1cedb0-efe9-11e7-8f13-a531139bcbad.png)
Those Docker images you see are the ones you have available in your local image repository in your machine.
You might have additional images, but at least, you should see the the custom images starting with the prefix "eshop" which is the name of the image repo. The rest of the images that are not starting with "eshop" will probably be official base-images like the microsoft/aspnetcore or the SQL Server for Linux images, etc.
# Deploy the containers into the local Docker host # Deploy the containers into the local Docker host
With a single command you can deploy the whole solution into your local Docker host by just executing the following: With a single command you can deploy the whole solution into your local Docker host by just executing the following:
@ -159,15 +168,6 @@ Finally, you can see how the scripts waits after deploying all the containers:
![image](https://user-images.githubusercontent.com/1712635/34506448-9f08318a-efe1-11e7-8567-a15e307bb991.png) ![image](https://user-images.githubusercontent.com/1712635/34506448-9f08318a-efe1-11e7-8567-a15e307bb991.png)
- You can also check out with Docker CLI the images generated by typing in the PowerShell console the command:
`docker images`
![image](https://user-images.githubusercontent.com/1712635/34507282-5f1cedb0-efe9-11e7-8f13-a531139bcbad.png)
Those Docker images are the ones you have available in your local image repository in your machine.
You might have additional images, but at least, you should see the the custom images starting with the prefix "eshop" which is the name of the image repo. The rest of the images that are not starting with "eshop" will probably be official base-images like the microsoft/aspnetcore or the SQL Server for Linux images, etc.
### Test the MVC Web app ### Test the MVC Web app
Open a browser and type `http://localhost:5100/` and hit enter. Open a browser and type `http://localhost:5100/` and hit enter.