This content is copyright of CloudCredo. © CloudCredo 2015. All rights reserved.
As a CF hero
I want a simple static website
So that I can focus on building my product
A Cloud Foundry component that
resolves your app’s runtime dependencies
Each buildpack participates in election
bin/detect
bin/compile
bin/release
Online and Offline
$ cf buildpacks
buildpack position filename
ruby_buildpack 1 ruby_buildpack-cached-v1.6.7
nodejs_buildpack 2 nodejs_buildpack-cached-v1.5.0
java_buildpack 3 java-buildpack-v3.2
go_buildpack 4 go_buildpack-cached-v1.6.2
liberty_buildpack 5 liberty_buildpack
python_buildpack 6 python_buildpack-cached-v1.5.1
php_buildpack 7 php_buildpack-cached-v4.1.4
staticfile_buildpack 8 staticfile_buildpack-cached-v1.2..
binary_buildpack 9 binary_buildpack-cached-v1.0.1
# From the training home directory:
$ cd 04-buildpacks/static-app
$ cf push
$ cf app static-app
state since cpu memory disk
#0 running 2015-11-02 0.0% 6.5M of 16M 33.6M of 64M
$ cf scale static-app -i 32
$ cf app static-app
state since cpu memory disk
#0 running 2015-11-02 0.0% 6.5M of 16M 33.6M of 64M
#1 starting 2015-11-02 0.0% 0 of 16M 0 of 64M
#2 running 2015-11-02 0.0% 6.9M of 16M 33.5M of 64M
...
#30 running 2015-11-02 0.0% 6.8M of 16M 33.5M of 64M
#31 running 2015-11-02 0.0% 7M of 16M 33.6M of 64M
As a CF hero
I want a simple static website
So that I can focus on building my product
Questions cannot be stupid. Answers can.
This content is copyright of CloudCredo. © CloudCredo 2015. All rights reserved.