gopkg.in/openshift/source-to-image.v1@v1.2.0/examples/nginx-centos7/s2i/bin/usage (about)

     1  #!/bin/bash -e
     2  cat <<EOF
     3  This is the nginx-centos7 S2I image:
     4  To use it, install S2I: https://github.com/openshift/source-to-image
     5  
     6  Sample invocation:
     7  
     8  s2i build test/test-app nginx-centos7 nginx-centos7-app
     9  
    10  You can then run the resulting image via:
    11  docker run -d -p 8080:8080 nginx-centos7-app
    12  and see the test via http://localhost:8080
    13  EOF