title | description | services | author | ms.service | ms.topic | ms.date | ms.author | ms.custom |
---|---|---|---|---|---|---|---|---|
include file |
include file |
iot-accelerators |
avneet723 |
iot-accelerators |
include |
10/29/2018 |
avneet723 |
include file |
The Remote Monitoring source code repositories include the Docker configuration files you need to run the microservices Docker images.
To clone and create a local version of the repository, use your command-line environment to navigate to a suitable folder on your local machine. Then run one of the following sets of commands to clone either the .NET or Java repository:
To download the latest version of the .NET microservice implementations, run:
git clone --recurse-submodules https://github.com/Azure/azure-iot-pcs-remote-monitoring-dotnet.git
# To retrieve the latest submodules, run the following command:
cd azure-iot-pcs-remote-monitoring-dotnet
git submodule foreach git pull origin master
To download the latest version of the Java microservice implementations, run:
git clone --recurse-submodules https://github.com/Azure/azure-iot-pcs-remote-monitoring-java.git
# To retrieve the latest submodules, run the following command:
cd azure-iot-pcs-remote-monitoring-java
git submodule foreach git pull origin master
Note
These commands download the source code for all the microservices in addition to the scripts you use to run the microservices locally. Although you don't need the source code to run the microservices in Docker, the source code is useful if you later plan to modify the solution accelerator and test your changes locally.
Although this article shows you how to run the microservices locally, they depend on Azure services running in the cloud. Use the following script to deploy the Azure services. The following script examples assume you're using the .NET repository on a Windows machine. If you're working in another environment, adjust the paths, file extensions, and path separators appropriately.
If you've not yet created the required Azure resources, follow these steps:
-
In your command-line environment, navigate to the \services\scripts\local\launch folder in your cloned copy of the repository.
-
Run the following commands to install the pcs CLI tool and sign in to your Azure account:
npm install -g iot-solutions pcs login
-
Run the start.cmd script. The script prompts you for the following information:
- A solution name.
- The Azure subscription to use.
- The location of the Azure datacenter to use.
The script creates resource group in Azure with your solution name. This resource group contains the Azure resources the solution accelerator uses. You can delete this resource group once you no longer need the corresponding resources.
The script also adds a set of environment variables with a prefix PCS to your local machine. When you launch the Docker containers locally, they read their configuration values from these environment variables.
Tip
When the script completes, it displays a list of environment variables. If you save these values to the services\scripts\local\.env file, you can use them for future solution accelerator deployments. Note that any environment variables set on your local machine override values in the services\scripts\local\.env file when you run docker-compose.
If you've already created the required Azure resources, create the corresponding environment variables on your local machine. You may have saved these values in the services\scripts\local\.env file as part of your last deployment. Note that environment variables set on your local machine override values in the services\scripts\local\.env file when you run docker-compose.