admin管理员组文章数量:1410737
I am using Microsoft Document Intelligence Read Container. I have multiple instances running and have a shared access for the data, meaing I can send an asynchronous call to container A and retrieve data from cotnainer B.
This is my docker-compose.yaml file:
services:
azure-document-intelligence-read-31:
container_name: di-read-31
image: mcr.microsoft/azure-cognitive-services/form-recognizer/read-3.1:latest
restart: unless-stopped
environment:
- EULA=accept
- Mounts:License=/license
- Mounts:Shared=/share
- Mounts:Output=/usage
- SharedRootFolder=/share
ports:
- "5000:5000"
networks:
- ocrvnet
volumes:
- /home/noroot/ILFO_FR_READ_3.1/license:/license
- /home/noroot/ILFO_FR_READ_3.1/share:/share
- /home/noroot/ILFO_FR_READ_3.1/usage:/usage
networks:
ocrvnet:
driver: bridge
Now I would like to encrypt the content of the /share folder due to data privacy concerns. When I start the container this output makes me think that this is possible to achieve:
warn: Microsoft.AspNetCore.DataProtection.Repositories.EphemeralXmlRepository[50] Using an in-memory repository. Keys will not be persisted to storage. warn: Microsoft.AspNetCore.DataProtection.KeyManagement.XmlKeyManager[59] Neither user profile nor HKLM registry available. Using an ephemeral key repository. Protected data will be unavailable when application exits.
What settings do I have to set in order to achieve this? In the official documentation I could not find anything about this.
本文标签: Azure Document Intelligence Running shared containerStack Overflow
版权声明:本文标题:Azure Document Intelligence: Running shared container - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1744935250a2633143.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论