commit
df45b56376
3 changed files with 20 additions and 0 deletions
@ -0,0 +1,9 @@ |
|||
FROM registry.access.redhat.com/rhscl/httpd-24-rhel7:latest |
|||
|
|||
ADD share/cgi-bin /opt/rh/httpd24/root/var/www/cgi-bin/ |
|||
ADD share/html /opt/rh/httpd24/root/var/www/html |
|||
|
|||
VOLUME /ogl/data |
|||
|
|||
ENTRYPOINT [ "/usr/bin/run-httpd" ] |
|||
CMD [ ] |
|||
@ -0,0 +1,6 @@ |
|||
#!/bin/sh |
|||
|
|||
echo "Content-Type: text/plain" |
|||
echo |
|||
echo "Hello World !" |
|||
|
|||
@ -0,0 +1,5 @@ |
|||
<html> |
|||
<body> |
|||
<h1>Welcome !</h1> |
|||
</body> |
|||
</html> |
|||
Loading…
Reference in new issue