1

I have done this tutorial and after many "problems", when I'm trying to deploy to Azure from my Git Local the console show me this error:

remote: System.IO.IOException: There is not enough space on the disk.

I'm trying to deploy to a web app in Azure and other stuff seems to work fine.

Any ideas? Thanks.

chemitaxis
  • 13,889
  • 17
  • 74
  • 125
  • How big is the repository? – levelnis Nov 29 '15 at 22:26
  • http://stackoverflow.com/questions/8185276/find-size-of-git-repo – levelnis Nov 29 '15 at 22:33
  • 80K, but my problem is when my app restore some package with Nuget and try to install :( – chemitaxis Nov 29 '15 at 22:35
  • 1
    I've come across this problem with a free website using coreclr and npm. Between the nuget and npm package restores and the installer copying files, it ended up using more than the included 1gb. Only "solution" I found was to upgrade to a paid-for package with more than 1gb of disc space. Not really an answer, hence posted as comment. – flytzen Nov 29 '15 at 23:34
  • I have done exactly the same and works like a charm... Good point ;) @Frans – chemitaxis Nov 29 '15 at 23:35
  • Having looked at the logs, when you specify coreclr in global.json, it seems like the entire runtime is downloaded and installed. If you don't specify anything in global.json, Azure will use the pre-installed full CLR - but that requires your projects to support them, which doesn't work on Mac (I don't think). I suspect they will sort this out as we get closer to a release. – flytzen Nov 29 '15 at 23:39

1 Answers1

1

@Frans comment solution:

I've come across this problem with a free website using coreclr and npm. Between the nuget and npm package restores and the installer copying files, it ended up using more than the included 1gb. Only "solution" I found was to upgrade to a paid-for package with more than 1gb of disc space. Not really an answer, hence posted as comment.

This works for me too ;)

chemitaxis
  • 13,889
  • 17
  • 74
  • 125