Posts

Showing posts from August, 2026

Apache iFrame Site on Docker

Introduction Running a multi-page static website inside Docker is a clean way to keep your development environment consistent, portable, and easy to share. In this article, we walk through how to build and serve an Apache-powered site that displays four distinct HTML pages inside expandable iframe sections - all containerised with Docker. Source code: https://github.com/j19349081-del/c/tree/apache What We Built The project lives on the apache branch and delivers a single-page expandable view powered by native HTML <details> and <summary> elements. Each section embeds a page via an iframe, and only the first section is expanded by default. Page 1 - Content index linking to the sections below. Page 2 - Team delivery snapshot with a bar chart and sprint priorities. Page 3 - Editorial notes with a donut chart and long-form text. Page 4 - Programme roadmap with milestones, a radar chart, and a quarterly status table. Project Structure The site foll...