[英]azureiotedge-diagnostics from private Container Registry
Is it possible to configure the container registry for the azureiotedge-diagnostics image download?是否可以为 azureiotedge-diagnostics 图像下载配置容器注册表? I want to move azureiotedge-diagnostics image to a private container registry.
我想将 azureiotedge-diagnostics 图像移动到私有容器注册表。
As suggested by AshokPeddakotla-MSFT , along with storing your container images for custom code modules in your private Azure registry, you can also store public container images such as for the edgeAgent and edgHub runtime modules正如AshokPeddakotla-MSFT所建议的,除了将自定义代码模块的容器镜像存储在私有 Azure 注册表中,您还可以存储公共容器镜像,例如 edgeAgent 和 edgHub 运行时模块
Steps:脚步:
Docker pull commands
Docker 拉命令
Azure IoT Edge Agent
docker pull mcr.microsoft.com/azureiotedge-agent:<VERSION_TAG>
Azure 物联网边缘代理
docker pull mcr.microsoft.com/azureiotedge-agent:<VERSION_TAG>
Azure IoT Edge Hub
docker pull mcr.microsoft.com/azureiotedge-hub:<VERSION_TAG>
Azure 物联网边缘中心
docker pull mcr.microsoft.com/azureiotedge-hub:<VERSION_TAG>
mcr.microsoft.com
with your registry name and server for both modules.mcr.microsoft.com
替换为两个模块的注册表名称和服务器。
edgeAgent:
"image": "<registry name and server>/azureiotedge-agent:1.1",
edgeAgent:
"image": "<registry name and server>/azureiotedge-agent:1.1",
edgeHub:
"image": "<registry name and server>/azureiotedge-hub:1.1",
edgeHub:
"image": "<registry name and server>/azureiotedge-hub:1.1",
reference: https://learn.microsoft.com/en-us/azure/iot-edge/production-checklist?view=iotedge-2020-11#store-runtime-containers-in-your-private-registry参考: https://learn.microsoft.com/en-us/azure/iot-edge/production-checklist?view=iotedge-2020-11#store-runtime-containers-in-your-private-registry
声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.