#!/bin/bash -e
cat <<EOF
This is the nginx-centos7 S2I image:
To use it, install S2I: https://github.com/openshift/source-to-image

Sample invocation:

s2i build test/ nginx-centos7 nginx-app

You can then run the resulting image via:
docker run -d -p 8080:8080 nginx-app
and see the test via http://localhost:8080
EOF
