From adaacadf4f8e71564b4cfcc3ca32c022bfeb05f0 Mon Sep 17 00:00:00 2001 From: Yuanxiao Date: Mon, 5 Dec 2016 07:34:04 -0600 Subject: [PATCH] advise use http/s or ssh protocol not local protocol (#646) * advise use http/s or ssh protocol not local protocol Signed-off-by: yuanxiao * advise use http/s or ssh protocol not local protocol Signed-off-by: yuanxiao * advise use http/s or ssh protocol not local protocol Signed-off-by: yuanxiao * advise use http/s or ssh protocol not local protocol Signed-off-by: yuanxiao advise use http/s or ssh protocol not local protocol Signed-off-by: yuanxiao advise use http/s or ssh protocol not local protocol Signed-off-by: yuanxiao --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 93cc73407..e630e6999 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 git://github.com/openshift/django-ex centos/python-35-centos7 hello-python + $ s2i build https://github.com/openshift/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. @@ -228,12 +228,12 @@ You can start using `s2i` right away (see [releases](https://github.com/openshif with the following test sources and publicly available images: ``` -$ s2i build git://github.com/pmorie/simple-ruby openshift/ruby-20-centos7 test-ruby-app +$ s2i build https://github.com/pmorie/simple-ruby openshift/ruby-20-centos7 test-ruby-app $ docker run --rm -i -p :8080 -t test-ruby-app ``` ``` -$ s2i build git://github.com/bparees/openshift-jee-sample openshift/wildfly-100-centos7 test-jee-app +$ s2i build https://github.com/bparees/openshift-jee-sample openshift/wildfly-100-centos7 test-jee-app $ docker run --rm -i -p :8080 -t test-jee-app ```