Hi all,
I´m trying to follow this tutorial https://docs.microsoft.com/en-us/azure/databox-online/azure-stack-edge-create-iot-edge-module#update-the-module-with-custom-code along this other https://docs.microsoft.com/en-us/azure/databox-online/azure-stack-edge-deploy-configure-compute-advanced, the code is working, I put a file in the local share and the trigger jumps, my module installed in the ASE recognizes the event, the issue comes when dealing with the routes, in the second article there is a configuration
{
"HostConfig":{
"Binds":[
"/home/hcsshares/mydbesmbedgelocalshare1:/home/input",
"/home/hcsshares/mydbesmbedgeshare1:/home/output"
]
}
}
I´m not able to fill it accordingly, moreover the properties of my local share doesn´t shows /home..., it is just the name of the share, so in my case I had to put this:
"settings":{
"image":"${MODULES.FileCopyModule}",
"createOptions":{
"HostConfig":{
"Binds":[
"/sharetdunfslocal:/home/input",
"/nfslocal2:/home/output"
]
}
}
}
but when the trigger raises, I got an error saying that the file "/home/input/test.txt" doesn´t exist, any tip?
Regards.