Using OpenShift for container orchestration in the cloud
The best way to use containers in the cloud is by using a provider. Why? Because they can provide you a good infrastructure and a nice service for a small price.
This recipe will show you how to get the container created in the first recipe of this chapter and deliver it using OpenShift.
Getting ready
If you don't have an account with OpenShift you can sign up for a free trial. Visit https://www.openshift.com/ and click on Sign up for free
.
How to do it...
- After logging in to the platform, you will see this main page:

Openshift main page
- Click on the
Create Project
button and fill in the blanks. Click onCreate
:

Filling fields for a new project
- Once your project is created, click on it:

Access for the new project
- On the opened page, click on
Add to Project
(top right) and thenDeploy Image
:

Project main page
- In the popup select
Image Name
, fill in the form with our pre-built image (eldermoraes/gf-javaee-cookbook
) and click on the Search icon.
You...