Difference between revisions of "CloudFoundry"

From air
Jump to navigation Jump to search
Line 7: Line 7:
   
 
Refcard : https://dzone.com/storage/assets/2652408-rc207-010d-cloudfoundry-update.pdf
 
Refcard : https://dzone.com/storage/assets/2652408-rc207-010d-cloudfoundry-update.pdf
  +
  +
=Premiers pas avec CloudFoundry sur pivotal.io=
  +
  +
Créer un compte gratuit sur http://pivotal.io
  +
  +
Suivre le tutoriel http://pivotal.io/fr/platform/pcf-tutorials/getting-started-with-pivotal-cloud-foundry/install-the-cf-cli
  +
  +
Les commandes sont:
  +
  +
<pre>
  +
git clone https://github.com/cloudfoundry-samples/cf-sample-app-spring.git
  +
cd cf-sample-app-spring
  +
more README.md
  +
more manifest.yml
  +
cf login -a https://api.run.pivotal.io
  +
cf push
  +
  +
</pre>

Revision as of 16:04, 27 July 2016

https://www.cloudfoundry.org/

Solution PaaS pour le déploiement

  • d'applications Java, Go, Python, Node.js, Ruby, ...
  • d'applications sur des frameworks comme Spring, Play, Grails, Rail, Meteor, ...
  • des images Docker

Refcard : https://dzone.com/storage/assets/2652408-rc207-010d-cloudfoundry-update.pdf

Premiers pas avec CloudFoundry sur pivotal.io

Créer un compte gratuit sur http://pivotal.io

Suivre le tutoriel http://pivotal.io/fr/platform/pcf-tutorials/getting-started-with-pivotal-cloud-foundry/install-the-cf-cli

Les commandes sont:

git clone https://github.com/cloudfoundry-samples/cf-sample-app-spring.git
cd cf-sample-app-spring
more README.md 
more manifest.yml 
cf login -a https://api.run.pivotal.io
cf push