An Azure service that offers file shares in the cloud.
Well after few(read lot) weeks of investigating issue, we found out that there was Python-code that was invoked in Container instance after it startted. We this was the main reason for different beheaviour between Docker and container in Azure.
But then I got to investigate the Python code. And that was amazing loop inside a another loop and so on. So it actually was really memory hugnry and due we had few hundred thousand invoices having average 33 detailt rows per invoice and then same amount of posting rows. So code was quite quickly reserving all possible memory. But that's another story.
But never, ever start anything after startup, you need to have trigger and monitoring!