TypeEdge/Microsoft.Azure.TypeEdge.Host/deviceconfig.json

69 строки
1.7 KiB
JSON
Исходник Обычный вид История

2018-05-09 02:56:12 +03:00
{
2020-01-21 05:24:00 +03:00
"$schema-template": "1.0.0",
2018-06-28 21:21:13 +03:00
"modulesContent": {
2018-05-09 02:56:12 +03:00
"$edgeAgent": {
"properties.desired": {
"schemaVersion": "1.0",
"runtime": {
"type": "docker",
"settings": {
"minDockerVersion": "v1.25",
2020-01-21 05:24:00 +03:00
"loggingOptions": "",
"registryCredentials": {}
2018-05-09 02:56:12 +03:00
}
},
"systemModules": {
"edgeAgent": {
"type": "docker",
"settings": {
"image": "mcr.microsoft.com/azureiotedge-agent:1.0",
2020-01-21 05:24:00 +03:00
"createOptions": {}
2018-05-09 02:56:12 +03:00
}
},
"edgeHub": {
"type": "docker",
"status": "running",
"restartPolicy": "always",
"settings": {
"image": "mcr.microsoft.com/azureiotedge-hub:1.0",
2020-01-21 05:24:00 +03:00
"createOptions": {
"HostConfig": {
"PortBindings": {
"5671/tcp": [
{
"HostPort": "5671"
}
],
"8883/tcp": [
{
"HostPort": "8883"
}
],
"443/tcp": [
{
"HostPort": "443"
}
]
}
}
}
2018-09-28 22:00:01 +03:00
}
2018-05-09 02:56:12 +03:00
}
},
"modules": {
}
}
},
"$edgeHub": {
"properties.desired": {
"schemaVersion": "1.0",
"routes": {
"route": "FROM /* INTO $upstream"
},
"storeAndForwardConfiguration": {
"timeToLiveSecs": 7200
}
}
}
}
2018-09-28 22:00:01 +03:00
}