docker for nginx
Published in -
22-03-20 00:31
nginx
├── docker-compose.yml
└── html
└── index.html
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
</head>
<body>
hello nginx
</body>
</html>
version: '3.7'
services:
nginx:
image: nginx:alpine
container_name: nginx
volumes:
- ./html:/usr/share/nginx/html
Next
^_^ Be the first to comment.
Comment
Nickname
Email (Reply notice)
Website
Content (can use Markdown syntax)