blob: 9afab48d436620961f508a5a4f9ef76c43c9630a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/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
#
id -a
ls -la /run/httpd
exec /usr/sbin/httpd
|