From c6fbdb4b263ddf66d63d8f662d17b9a266c1c25b Mon Sep 17 00:00:00 2001 From: Anil Date: Sat, 18 Apr 2026 16:11:01 +0100 Subject: [PATCH] Initial site + Dockerfile Static holding page for anilstocker.org, served by nginx:alpine. --- .gitignore | 5 ++++ Dockerfile | 4 +++ README.md | 19 ++++++++++++- site/index.html | 71 +++++++++++++++++++++++++++++++++++++++++++++++++ 4 files changed, 98 insertions(+), 1 deletion(-) create mode 100644 .gitignore create mode 100644 Dockerfile create mode 100644 site/index.html diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..3bd5576 --- /dev/null +++ b/.gitignore @@ -0,0 +1,5 @@ +.DS_Store +Thumbs.db +*.swp +.idea/ +.vscode/ diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..32f3f06 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,4 @@ +FROM nginx:alpine +COPY site/ /usr/share/nginx/html/ +EXPOSE 80 +HEALTHCHECK --interval=30s --timeout=3s CMD wget -qO- http://127.0.0.1/ >/dev/null || exit 1 diff --git a/README.md b/README.md index 439c40e..338aa15 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,20 @@ # anilstocker-web -Source for anilstocker.org \ No newline at end of file +Source for https://anilstocker.org — static holding page served via nginx. + +## Structure + +- `site/` — web root. Everything here is served at `/` by nginx. +- `Dockerfile` — builds a tiny `nginx:alpine` image with `site/` as web root. + +## Local preview + +```bash +docker build -t anilstocker-web . +docker run --rm -p 8080:80 anilstocker-web +# visit http://localhost:8080 +``` + +## Deploy + +Push to `main` — Coolify auto-deploys via webhook. diff --git a/site/index.html b/site/index.html new file mode 100644 index 0000000..6069343 --- /dev/null +++ b/site/index.html @@ -0,0 +1,71 @@ + + + + + Anil Stocker + + + + + +
+

Anil Stocker

+

Building what is next.

+

After leading Kriya Finance for over a decade — a UK B2B embedded finance platform sold to Allica Bank in 2025 — I am exploring the next venture, applying AI natively to financial and professional services.

+

More here soon. In the meantime: + LinkedIn + · + Email +

+

anilstocker.org

+
+ +