@Rory McCrossan Thank you for reaching out to Microsoft Q&A. Apologize for the inconvenience caused on this.
Based on the shared information, we have understood that you are trying to deploy your app through Azure deVops and it is failed with error "There is not enough space on the disk" and also we see that(from shared screenshot) you have multiple app running under the same app service plan.
This might be happened due to the insufficient space in temp files not in the file system storage. App service file system comes with persisted files and temporary files.
- Persisted files: This is what you can view as your web site's files. They follow a structure described here. They are rooted in %HOME% directory. For App Service on Linux and Web app for Containers, persistent storage is rooted in /home.
All the files in persistent storage will remain even after the app restarts as well and these files are shared between all instances of your site (when you scale it up to multiple instances). - Temporary files: Unlike Persisted files, these files are not shared among site instances. Also, you cannot rely on them staying there. For instance, if you restart a web app, you'll find that all of these folders get reset to their original state.
You refer to this documentation for more information about the persistent files and temporary files in app service file system.
- If you web app is running on the Windows app service plan i would suggest you install the
Azure Web Apps Disk Usage
extensions from site extensions through kudu and using that extension you understand which app is consuming more space and you can delete the unwanted space accordingly. Refer to this blog post to understand more what is taking my disk space for my azure web apps. - If you webapp are running on the Linux app service plan I would suggest restarting all the apps inside the app service plan to clear that temp file or try to scaleup the app service plan to next tier to increase the temp size.
Feel free to reach back to me if you have any further questions on this.