Skip to content

appuio/example-jee-s2i

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Java EE Example Application on APPUiO

This is a quickstart Java EE Example application for APPUiO - Swiss Container Platform

Deployment

Create new Project if needed:

oc new-project example-jee-s2i

Create app and expose the service, to be able to reach the app from the internet:

oc new-app https://github.com/appuio/example-jee-s2i.git --name=appuio-jee-s2i
oc expose service appuio-jee-s2i

Configuration

The current example also deploys a wildfly configuration file, the specific config file (cfg/standalone.xml) is optional. In our example we add a custom config to show how configuration can be customized.

Speed up your build

With S2I you can use incremental builds to speed up the build. Build artifacts like maven dependencies will be cached.

set incremental to true in your build config

oc edit bc appuio-jee-s2i
strategy:
  type: "Source"
  sourceStrategy:
    from:
      kind: "ImageStreamTag"
      name: "appuio-jee-s2i-image:latest" 
    incremental: true

About

Java EE APPUiO S2I Example

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published