|
1 | | ---- |
| 1 | +--- |
2 | 2 | title: Microservices hosted in Docker | C# |
3 | 3 | description: Learn to create asp.net core services that run in Docker containers |
4 | 4 | keywords: .NET, .NET Core, Docker, C#, ASP.NET, Microservice |
@@ -61,15 +61,16 @@ for instructions for your platform. |
61 | 61 | Docker can be installed in many Linux distributions, macOS, or Windows. The page |
62 | 62 | referenced above contains sections to each of the available installations. |
63 | 63 |
|
64 | | -You'll also need to install a number of command line tools that support |
| 64 | +Most components to be installed are done by a package manager. If you have node.js's package manager `npm` installed you can skip this step. |
| 65 | +Otherwise install the latest NodeJs from [nodejs.org](https://nodejs.org) which will install the npm package manager. |
| 66 | + |
| 67 | +At this point you will need to install a number of command line tools that support |
65 | 68 | ASP.NET core development. The command line templates use Yeoman, Bower, |
66 | | -Grunt, and Gulp. You may already have many of these tools, but if not, |
67 | | -run the following command in your favorite shell: |
| 69 | +Grunt, and Gulp. If you have them installed that is good, otherwise type the following into your favorite shell: |
68 | 70 |
|
69 | 71 | `npm install -g yo bower grunt-cli gulp` |
70 | 72 |
|
71 | | -This instructs the node package manager (npm) to install the needed tools. |
72 | | -The '-g' option indicates that it is a global install, and those tools are |
| 73 | +The `-g` option indicates that it is a global install, and those tools are |
73 | 74 | available system wide. (A local install scopes the package to a single |
74 | 75 | project). Once you've installed those core tools, you need to install |
75 | 76 | the yeoman asp.net template generators: |
|
0 commit comments