blob: ab9c2e0b56c4a59174116c6582bcf99520287c61 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#!/bin/bash -e
#
# S2I run script for the 'kraxel/s2i-jekyll' image.
# The run script executes the server that runs your application.
#
# For more information see the documentation:
# https://github.com/openshift/source-to-image/blob/master/docs/builder_image.md
#
exec /usr/sbin/httpd -f /opt/app-root/etc/httpd.conf -DFOREGROUND
|