5.3. Introduction. Ecosystem. Architecture. Docker container lifecycle. Task 1
82
Fork of the official Nginx image with modified index.html
docker run --rm -d --name web -p 80:80 podkovka/devops-nginx:v1
Modified page index.html :
<!DOCTYPE html>
<html>
<head>
Hey, Netology
</head>
<body>
<h1>I’m DevOps Engineer!</h1>
</body>
</html>
Content type
Image
Digest
Size
66 MB
Last updated
over 4 years ago
docker pull podkovka/devops-nginx:v1