Cloudfoundry: Docker app crashes on startup Cloudfoundry: Docker app crashes on startup docker docker

Cloudfoundry: Docker app crashes on startup


It seems that your docker image is larger than the default disk limit. You can increase the disk limit when you push your docker image by specifying the parameter -k. E.g.:

cf push -k 2G

If you're using a manifest to specify the parameters please add the following code to your manifest.yml

disk_quota: 2G


Increasing the disk limit did the trick

cf push --help:

   -k                           Disk limit (e.g. 256M, 1024M, 1G)