From 825a058bef64ecd3d107f74a30f25f5557a180e4 Mon Sep 17 00:00:00 2001 From: James Downie Date: Sun, 18 May 2025 15:10:06 +1000 Subject: [PATCH] Got a simple web page started. --- docker-compose.yaml | 10 ++++++++++ index.html | 27 +++++++++++++++++++++++++++ 2 files changed, 37 insertions(+) create mode 100644 docker-compose.yaml create mode 100644 index.html diff --git a/docker-compose.yaml b/docker-compose.yaml new file mode 100644 index 0000000..2a415bb --- /dev/null +++ b/docker-compose.yaml @@ -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 diff --git a/index.html b/index.html new file mode 100644 index 0000000..cee441a --- /dev/null +++ b/index.html @@ -0,0 +1,27 @@ + + + + + + Homelab Brisbane + + + +
+

Hello, Bootstrap & jQuery!

+

This is a simple one-page HTML template.

+
+ + + + +