What's the meaning of "instance" in Cloud Foundry?
How can an app in Cloud Foundry can have many instances?
What's the meaning of "instance" in Cloud Foundry?
How can an app in Cloud Foundry can have many instances?
We refer to each independent copy of your app as an 'instance' of the application. Each instance can be independently started or stopped, and if an instance should fail, the Cloud Foundry elastic runtime will attempt to restart it automatically.
If your application is designed for the cloud, typically following the guidance of the 12-factor app, it can be scaled horizontally, such that there are multiple independent copies of your app, each running in their own container in the Cloud Foundry elastic runtime.
The Cloud Foundry documentation has information on how to scale your app once it has been deployed.