From 288eb91fef9eb7a12b9663ad16bc4b5909b2c03c Mon Sep 17 00:00:00 2001 From: Arthur De Magalhaes Date: Mon, 25 Nov 2019 12:30:36 -0500 Subject: [PATCH 1/2] Update content.md --- open-liberty/content.md | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/open-liberty/content.md b/open-liberty/content.md index cbde64da7..f7fe19b96 100644 --- a/open-liberty/content.md +++ b/open-liberty/content.md @@ -2,6 +2,8 @@ The images in this repository contain Open Liberty. For more information about Open Liberty, see the [Open Liberty Website](https://openliberty.io/) site. +If you're looking for Open Liberty based on Red Hat's Universal Base Image, please see [this repo](https://hub.docker.com/r/openliberty/open-liberty). + # Image User This image runs by default with `USER 1001` (non-root), as part of group `0`. Please make sure you read below to set the appropriate folder and file permissions. @@ -47,17 +49,16 @@ Please note that this pattern will duplicate the docker layers for those artifac There are multiple tags available in this repository. -The `kernel` image contains the Liberty kernel and can be used as the basis for custom built images that contain only the features required for a specific application. For example, the following Dockerfile starts with this image, copies in the `server.xml` that lists the features required by the application. +The `kernel` image contains the Liberty kernel and can be used as the basis for custom built images that contain only the features required for a specific application. For example, the following Dockerfile starts with this image, copies in the `server.xml` that lists the features required by the application and then run a built-in script to install the needed features. ```dockerfile FROM %%IMAGE%%:kernel COPY --chown=1001:0 Sample1.war /config/dropins/ COPY --chown=1001:0 server.xml /config/ +RUN configure.sh ``` -The `microProfile1` image contains the features required to implement Eclipse MicroProfile 1.3. The `webProfile8` image contains the features required for Java EE8 Web Profile compliance. The `javaee8` image adds the features required for Java EE8 Full Platform compliance. The `javaee8` image is also tagged with `latest`. The `webProfile7` image contains the features required for Java EE7 Web Profile compliance. The `javaee7` image adds the features required for Java EE7 Full Platform compliance. The `springBoot1` and `springBoot2` images contain the features required for running Spring Boot 1.5 and 2.0 applications. - -There are also additional images for different JVM combinations. Currently there are tags for java8 only, but there are two variants one based on IBM Java and Ubuntu and the other based on the IBM small footprint Java which is based on alpine linux. The naming structure for the variants is tag-javaversion-vandor/variant. This leads to webProfile8-java8-ibmsfj as one. At this time the full list of images are found in the `Supported tags and respective Dockerfile links` section above. +The full list of images are found in the `Supported tags and respective Dockerfile links` section above. # Usage From 3a0964fbacf89d23cc1ec4a416fa0f713fa56fb5 Mon Sep 17 00:00:00 2001 From: Arthur De Magalhaes Date: Mon, 25 Nov 2019 12:37:47 -0500 Subject: [PATCH 2/2] Fixing format Signed-off-by: Arthur De Magalhaes --- open-liberty/content.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/open-liberty/content.md b/open-liberty/content.md index f7fe19b96..f2519b8a8 100644 --- a/open-liberty/content.md +++ b/open-liberty/content.md @@ -2,7 +2,7 @@ The images in this repository contain Open Liberty. For more information about Open Liberty, see the [Open Liberty Website](https://openliberty.io/) site. -If you're looking for Open Liberty based on Red Hat's Universal Base Image, please see [this repo](https://hub.docker.com/r/openliberty/open-liberty). +If you're looking for Open Liberty based on Red Hat's Universal Base Image, please see [this repo](https://hub.docker.com/r/openliberty/open-liberty). # Image User