minmal test
This commit is contained in:
parent
aa00f182d2
commit
6d19a616a8
3 changed files with 18 additions and 0 deletions
0
config/nginx.conf
Normal file
0
config/nginx.conf
Normal file
7
docker-compose.yaml
Normal file
7
docker-compose.yaml
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
services:
|
||||
nginx:
|
||||
image: nginx
|
||||
ports:
|
||||
- 8000:80
|
||||
volumes:
|
||||
- ./src:/usr/share/nginx/html
|
||||
11
src/index.html
Normal file
11
src/index.html
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Old Rabbit Town</title>
|
||||
</head>
|
||||
<body>
|
||||
<h1>Hello World</h1>
|
||||
</body>
|
||||
</html>
|
||||
Loading…
Add table
Reference in a new issue