This commit is contained in:
Spyros Garyfallos 2018-10-26 13:27:59 -07:00
Родитель bed7e8c030
Коммит e871e21da5
3 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -37,7 +37,7 @@ namespace TypeEdgeApplication
var manifest = host.GenerateDeviceManifest((e, settings) =>
{
//this is the opportunity for the host to change the hosting settings of the module e
if (!settings.IsExternalModule)
if (!settings.IsExternalModule && !settings.IsSystemModule)
settings.Config = new DockerConfig($"{dockerRegistry}{e}:1.0", settings.Config.CreateOptions);
return settings;
});

Просмотреть файл

@ -31,7 +31,7 @@ namespace TypeEdgeEmulator
var manifest = host.GenerateDeviceManifest((e, settings) =>
{
//this is the opportunity for the host to change the hosting settings of the module e
if (!settings.IsExternalModule)
if (!settings.IsExternalModule && !settings.IsSystemModule)
settings.Config = new DockerConfig($"{dockerRegistry}{e}:1.0", settings.Config.CreateOptions);
return settings;
});

Просмотреть файл

@ -40,7 +40,7 @@ namespace TypeEdgeML
var manifest = host.GenerateDeviceManifest((e, settings) =>
{
//this is the opportunity for the host to change the hosting settings of the module e
if (!settings.IsExternalModule)
if (!settings.IsExternalModule && !settings.IsSystemModule)
settings.Config = new DockerConfig($"{dockerRegistry}{e}:1.0", settings.Config.CreateOptions);
return settings;
});