hi
This commit is contained in:
9
docker-compose.yml
Normal file
9
docker-compose.yml
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
services:
|
||||||
|
wedding-web:
|
||||||
|
image: nginx:alpine
|
||||||
|
container_name: wedding-web
|
||||||
|
restart: unless-stopped
|
||||||
|
ports:
|
||||||
|
- "127.0.0.1:8080:80"
|
||||||
|
volumes:
|
||||||
|
- ./site:/usr/share/nginx/html:ro
|
||||||
12
site/index.html
Normal file
12
site/index.html
Normal file
@@ -0,0 +1,12 @@
|
|||||||
|
<!doctype html>
|
||||||
|
<html lang="de">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8" />
|
||||||
|
<meta name="viewport" content="width=device-width,initial-scale=1" />
|
||||||
|
<title>Svenja & Dominic</title>
|
||||||
|
</head>
|
||||||
|
<body style="font-family: system-ui; padding: 40px;">
|
||||||
|
<h1>Hallo Welt 👋</h1>
|
||||||
|
<p>Wedding-App läuft via Docker Compose 🎉</p>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
Reference in New Issue
Block a user