Using Azure WebApp i have set the WEBSITES_ENABLE_APP_SERVICE_STORAGE=TRUE
and added
volumes:
- ${WEBAPP_STORAGE_HOME}/data:/home/data
to the docker-compose.yaml file.
I can see the directory being populated by mongo files, yet the console shows "Operation not permitted Raw:... ***aborting after fassert() failure"
when trying to launch mongod --dbpath /home/data
I also noticed i can't change the folders permissions which are set to drwxrwxrwx 2 nobody nogroup
.
Why is the mongod process crashing even tough it Can write files to the persistent storage?
Thank You.