--- /dev/null
+# relativeweather
+This is a simple webpage that pulls today and tomorrow's forcasted high temperatures in Park Ridge, IL using the Open-Meteo API.
+
+### Requirements
+* A web server (tested with Apache)
+* PHP (tested with 8.2 and 8.3)
+* An active Internet connection to pull the weather data, as this happens on page load
+
+### Container deployment
+Instead of spinning up a web server with PHP yourself, you can opt to run the Docker container. Here is an example:
+
+```
+docker run -d -p 6969:80 --restart=unless-stopped --name relativeweather registry.services.jianu.house/relativeweather
+```