From d431bff05e305864dd89070fa70d026eec4884e8 Mon Sep 17 00:00:00 2001 From: liangxia Date: Mon, 17 Sep 2018 11:21:22 +0800 Subject: [PATCH] Update example repos that were moved to sclorg --- README.md | 2 +- hack/test-stirunimage.sh | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index bc4d8ffd0..03b8ad141 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ For a deep dive on S2I you can view [this presentation](https://www.youtube.com/ Want to try it right now? Download the [latest release](https://github.com/openshift/source-to-image/releases/latest) and run: - $ s2i build https://github.com/openshift/django-ex centos/python-35-centos7 hello-python + $ s2i build https://github.com/sclorg/django-ex centos/python-35-centos7 hello-python $ docker run -p 8080:8080 hello-python Now browse to http://localhost:8080 to see the running application. diff --git a/hack/test-stirunimage.sh b/hack/test-stirunimage.sh index 4b8354f8f..9e016d4eb 100755 --- a/hack/test-stirunimage.sh +++ b/hack/test-stirunimage.sh @@ -74,7 +74,7 @@ pushd ${WORK_DIR} test_debug "cloning source into working dir" -git clone https://github.com/openshift/cakephp-ex &> "${WORK_DIR}/s2i-git-clone.log" +git clone https://github.com/sclorg/cakephp-ex &> "${WORK_DIR}/s2i-git-clone.log" check_result $? "${WORK_DIR}/s2i-git-clone.log" test_debug "s2i build with relative path without file://" @@ -137,7 +137,7 @@ grep "Running custom run" "${WORK_DIR}/s2i-override-run.log" check_result $? "${WORK_DIR}/s2i-override-run.log" test_debug "s2i build with remote git repo" -s2i build https://github.com/openshift/cakephp-ex docker.io/centos/php-70-centos7 test --loglevel=5 &> "${WORK_DIR}/s2i-git-proto.log" +s2i build https://github.com/sclorg/cakephp-ex docker.io/centos/php-70-centos7 test --loglevel=5 &> "${WORK_DIR}/s2i-git-proto.log" check_result $? "${WORK_DIR}/s2i-git-proto.log" test_debug "s2i build with runtime image" @@ -145,7 +145,7 @@ s2i build --ref=10.x --context-dir=helloworld https://github.com/wildfly/quickst check_result $? "${WORK_DIR}/s2i-runtime-image.log" test_debug "s2i build with Dockerfile output" -s2i build https://github.com/openshift/cakephp-ex docker.io/centos/php-70-centos7 --as-dockerfile=${WORK_DIR}/asdockerfile/Dockerfile --loglevel=5 >& "${WORK_DIR}/s2i-dockerfile.log" +s2i build https://github.com/sclorg/cakephp-ex docker.io/centos/php-70-centos7 --as-dockerfile=${WORK_DIR}/asdockerfile/Dockerfile --loglevel=5 >& "${WORK_DIR}/s2i-dockerfile.log" check_result $? "${WORK_DIR}/s2i-dockerfile.log"