Got a simple web page started.

This commit is contained in:
2025-05-18 15:10:06 +10:00
parent 0f4ff8cc82
commit 825a058bef
2 changed files with 37 additions and 0 deletions

10
docker-compose.yaml Normal file
View File

@@ -0,0 +1,10 @@
version: '3.8'
services:
web:
image: php:8.2-apache
container_name: bootstrap_app
ports:
- "8080:80"
volumes:
- ./:/var/www/html:Z

27
index.html Normal file
View File

@@ -0,0 +1,27 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Homelab Brisbane</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css"
rel="stylesheet"
crossorigin="anonymous" />
</head>
<body>
<div class="container mt-5">
<h1 class="text-center">Hello, Bootstrap & jQuery!</h1>
<p class="text-center">This is a simple one-page HTML template.</p>
</div>
<script src="https://code.jquery.com/jquery-3.7.1.min.js"
crossorigin="anonymous">
</script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"
crossorigin="anonymous">
</script>
<script>
$(document).ready(function () {
});
</script>
</body>
</html>