Skip to content

Instantly share code, notes, and snippets.

@dougbtv
Created June 5, 2017 15:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dougbtv/f89424d61a99f14c99415d3c515b9aff to your computer and use it in GitHub Desktop.
Save dougbtv/f89424d61a99f14c99415d3c515b9aff to your computer and use it in GitHub Desktop.
nginx-cowsay
FROM centos:centos7
RUN yum install -y epel-release
RUN yum install -y nginx
ADD index.html /usr/share/nginx/html/index.html
CMD nginx -g 'daemon off;'
<!DOCTYPE html>
<html lang="en" >
<head>
<meta name="description"
content="application/xhtml+xml"/>
<meta charset="UTF-8"/>
<title>This is nginx-cowsay</title>
</head>
<body>
Hello!
<pre>
___________________________
< Hello OPNFV, from Vermont >
---------------------------
\ ^__^
\ (**)\_______
(__)\ )\/\
U ||----w |
|| ||
</pre>
</body>
</html>
<!DOCTYPE html>
<html lang="en" >
<head>
<meta name="description"
content="application/xhtml+xml"/>
<meta charset="UTF-8"/>
<title>This is nginx-cowsay</title>
</head>
<body>
Hello!
<pre>
___________________________
< Hello OPNFV, from Vermont >
---------------------------
\
.---. __
, / \ \ ||||
\\\\ |O___O | | \\||||
\ // | \_/ | | \ /
'--/----/| / | |-'
// // / -----'
// \\ / /
// // / /
// \\ / /
// // / /
/| ' / /
//\___/ /
// ||\ /
\\_ || '---'
/' / \\_.-
/ / --| |
'-' | |
'-'
</pre>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment