Created
January 23, 2022 18:38
-
-
Save girol/138e85b13c4ea9ba6d3d336e9862c87c to your computer and use it in GitHub Desktop.
sample-docker
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM nginx:alpine | |
COPY index.html /usr/share/nginx/html |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang='pt-br'> | |
<head> | |
<meta charset='UTF-8'> | |
<title>Simple Docker Static</title> | |
</head> | |
<body> | |
<div class="container"> | |
<h1>Olar Vocer</h1> | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment