From 73f5f1246dfde2822c54ccf1bbd4f61c1b7875b8 Mon Sep 17 00:00:00 2001 From: Lumerel Deploy Date: Sat, 14 Feb 2026 20:04:03 +0000 Subject: [PATCH] Deploy from Lumerel --- .dockerignore | 3 +++ Dockerfile | 4 ++++ index.html | 18 ++++++++++++++++++ styles.css | 32 ++++++++++++++++++++++++++++++++ 4 files changed, 57 insertions(+) create mode 100644 .dockerignore create mode 100644 Dockerfile create mode 100644 index.html create mode 100644 styles.css diff --git a/.dockerignore b/.dockerignore new file mode 100644 index 0000000..17896fe --- /dev/null +++ b/.dockerignore @@ -0,0 +1,3 @@ +.git +Dockerfile +.dockerignore diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..72af600 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,4 @@ +FROM webdevops/php-nginx:8.3-alpine +ENV WEB_DOCUMENT_ROOT=/app +COPY . /app +RUN chown -R application:application /app diff --git a/index.html b/index.html new file mode 100644 index 0000000..5834d39 --- /dev/null +++ b/index.html @@ -0,0 +1,18 @@ + + + + + + Hello World - Todd Low Media + + + +
+

Hello, World!

+

Welcome to the Todd Low Media Hello World project.

+
+

🚀 This page was created on: Saturday, February 14th, 2026

+
+
+ + \ No newline at end of file diff --git a/styles.css b/styles.css new file mode 100644 index 0000000..fd0a967 --- /dev/null +++ b/styles.css @@ -0,0 +1,32 @@ +body { + font-family: Arial, sans-serif; + background-color: #f4f4f4; + display: flex; + justify-content: center; + align-items: center; + height: 100vh; + margin: 0; + color: #333; +} + +.container { + background-color: white; + padding: 2rem; + border-radius: 10px; + box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); + text-align: center; + max-width: 500px; + width: 100%; +} + +h1 { + color: #4a4a4a; + margin-bottom: 1rem; +} + +.fun-fact { + margin-top: 1rem; + font-size: 0.9rem; + color: #666; + font-style: italic; +} \ No newline at end of file