17 lines
506 B
Bash
Executable file
17 lines
506 B
Bash
Executable file
#!/bin/sh
|
|
|
|
DISTRO=`cat /etc/*-release | grep ^ID= | grep -Po '".*?"' | tr -d '"'`
|
|
NAMESPACE=centos
|
|
[[ $DISTRO =~ rhel* ]] && NAMESPACE=rhscl
|
|
|
|
cat <<EOF
|
|
This is a S2I PHP-7.1 ${DISTRO} base image:
|
|
To use it, install S2I: https://github.com/openshift/source-to-image
|
|
|
|
Sample invocation:
|
|
|
|
s2i build https://github.com/sclorg/s2i-php-container.git --context-dir=/7.1/test/test-app/ ${NAMESPACE}/php-71-${DISTRO}7 php-test-app
|
|
|
|
You can then run the resulting image via:
|
|
docker run -p 8080:8080 php-test-app
|
|
EOF
|