TheBAST
TheBAST

Reputation: 2736

What should be the proper commands for pushing a web app via ibmcloud?

I want 2 deploy a simple laravel app via ibmcloud but I was really having a hard time trying to figure out this crazy workflow. So, the steps that I've done is like this

$ ibmcloud login

Then what should follow ?

I already did it like this

enter image description here

Upvotes: 0

Views: 255

Answers (1)

Vidyasagar Machupalli
Vidyasagar Machupalli

Reputation: 2865

As I see manifest.yml file, I am assuming that you are planning to push your app to Cloud Foundry on IBM Cloud. The next steps will be to specify an Org and space interactively

ibmcloud target --cf

Or, if you know which org and space that the service belongs to, you can use the following command:

ibmcloud target -o <value> -s <value>

Once specified, deploy your app to IBM Cloud by using the following command

ibmcloud cf push 

For more information on modifying and redeploying your Cloud Foundry app with the command-line interface, refer this link

Upvotes: 1

Related Questions