skip to content
Alvin Lucillo

Enabling storage mount for app service

/ 1 min read

In continuation of the TIL entry last July 6, 2026, we are now at enabling persistent /home storage. The command below enables storage mount for the app service.

az webapp config appsettings set \
    --resource-group $RESOURCE_GROUP \
    --name $APP_NAME \
    --settings WEBSITES_ENABLE_APP_SERVICE_STORAGE=true
[
  {
    "name": "WEBSITES_ENABLE_APP_SERVICE_STORAGE",
    "slotSetting": false,
    "value": null
  },
  {
    "name": "DOCKER_REGISTRY_SERVER_URL",
    "slotSetting": false,
    "value": null
  }
]