Skip to content

Commit 1cc3b23

Browse files
authored
Merge pull request #209986 from PatAltimore/patricka-uid
Add image value clarification
2 parents 7fd5dfe + 42fd0f3 commit 1cc3b23

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

articles/iot-edge/how-to-access-host-storage-from-module.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -129,11 +129,11 @@ To enable a link from module storage to the storage on the host system, create a
129129
For example, if you wanted to enable the IoT Edge hub to store messages in your device's local storage and retrieve them later, you can configure the environment variables and the create options in the Azure portal in the **Runtime Settings** section.
130130

131131
1. For both IoT Edge hub and IoT Edge agent, add an environment variable called **storageFolder** that points to a directory in the module.
132-
1. For both IoT Edge hub and IoT Edge agent, add binds to connect a local directory on the host machine to a directory in the module. For example:
132+
1. For both IoT Edge hub and IoT Edge agent, add binds to connect a local directory on the host machine to a directory in the module. For example, for version 1.1:
133133

134134
![Add create options and environment variables for local storage](./media/how-to-access-host-storage-from-module/offline-storage.png)
135135

136-
Or, you can configure the local storage directly in the deployment manifest. For example:
136+
Or, you can configure the local storage directly in the deployment manifest. For example, for version 1.1:
137137

138138
```json
139139
"systemModules": {
@@ -173,7 +173,7 @@ Or, you can configure the local storage directly in the deployment manifest. For
173173
}
174174
```
175175

176-
Replace `<HostStoragePath>` and `<ModuleStoragePath>` with your host and module storage path; both values must be an absolute path.
176+
Replace `<HostStoragePath>` and `<ModuleStoragePath>` with your host and module storage path; both values must be an absolute path. If using version 1.3, update each image version with `1.3`. For example, `mcr.microsoft.com/azureiotedge-agent:1.3`.
177177

178178
For example, on a Linux system, `"Binds":["/etc/iotedge/storage/:/iotedge/storage/"]` means the directory **/etc/iotedge/storage** on your host system is mapped to the directory **/iotedge/storage/** in the container. On a Windows system, as another example, `"Binds":["C:\\temp:C:\\contemp"]` means the directory **C:\\temp** on your host system is mapped to the directory **C:\\contemp** in the container.
179179

6.47 KB
Loading

0 commit comments

Comments
 (0)