I'm deploying to azure container instances from the azure container registry (azure cli and/or portal). Azure blobfuse (on ubuntu 18) is giving me the following error:
device not found, try 'modprobe fuse' first.
The solution to this would be to use the --cap-add=SYS_ADMIN --device /dev/fuse
flags when starting the container (docker run):
can't open fuse device in a docker container when mounting a davfs2 volume
However, the --cap-add
flag is not supported by ACI:
AzureFiles are too expensive for our scenario.
Any suggestion on how to use blobfuse or Azure Blob Storage (quasi-natively from nodejs) from a Docker Linux container in ACI?