Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

The best way is actually to follow the advice here.

Creating an App

There are many ways to create an OpenShift application, including:

  • from source code
    • oc new-app /path/to/someUser/someProject
    • oc new-app https://github.com/someUser/someProject
  • from docker images
    • oc new-app someImageOnDockerHub
    • oc new-app localhost:5000/someImage
  • from templates
    • oc new-app someOpenShiftTemplate
    • oc new-app -f /path/to/someTemplate.json
  • using the web console

YZ

Running Magnolia on OpenShift

...