From 8a63f0e6de7b5d13a9e73fb5d7df935be16e6356 Mon Sep 17 00:00:00 2001 From: Kevin Ortega Date: Mon, 19 Aug 2024 13:08:02 -0400 Subject: [PATCH] Update README --- README.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 14b4854..4fac927 100644 --- a/README.md +++ b/README.md @@ -37,7 +37,7 @@ using standalone [S2I](https://github.com/openshift/source-to-image) and then ru resulting image with [Docker](http://docker.io) execute: ``` -$ s2i build https://github.com/WASdev/sample.ferret.git ibmcom/websphere-liberty-s2i:java8 websphere-liberty-test +$ s2i build https://github.com/WASdev/sample.ferret.git icr.io/appcafe/websphere-liberty-s2i:java8 websphere-liberty-test $ docker run -p 9080:9080 websphere-liberty-test ``` @@ -50,8 +50,10 @@ S2I Runtime Images ------------------ Use the following commands to build and test a lightweight runtime image +All WebSphere Liberty s2i images are stored on icr.io. + ``` -$ s2i build https://github.com/WASdev/sample.ferret.git ibmcom/websphere-liberty-s2i:java8 websphere-liberty-runtime-test --runtime-image ibmcom/websphere-liberty-s2i:runtime-java8 --runtime-artifact /opt/ibm/wlp/usr/servers/defaultServer/dropins +$ s2i build https://github.com/WASdev/sample.ferret.git icr.io/appcafe/websphere-liberty-s2i:java8 websphere-liberty-runtime-test --runtime-image icr.io/appcafe/websphere-liberty-s2i:runtime-java8 --runtime-artifact /opt/ibm/wlp/usr/servers/defaultServer/dropins $ docker run -p 9080:9080 websphere-liberty-runtime-test ```