From 8defce61198807a5c81eb65fe616a9677918038b Mon Sep 17 00:00:00 2001 From: Lian Leon Date: Mon, 17 Mar 2025 13:08:35 -0400 Subject: [PATCH] Add Docker support section to README.md --- README.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/README.md b/README.md index 69521469..532c4f88 100644 --- a/README.md +++ b/README.md @@ -116,3 +116,19 @@ To help build a more privacy focused product, we recommend using [Fathom Analyti ###### ** Analytics in this dashboard start May 03, 2022. View this [Google Sheets file](https://docs.google.com/spreadsheets/d/1GL4SroAdH-OZphBVR5z-BoSukHIEVJfao25q_e9-Ii8/edit?usp=sharing) with the generic unique pageview data from Google Analytics. [![Fathom](https://cdn.cottle.cloud/littlelink/button-fathom-analytics.svg)](https://usefathom.com/ref/EQVZMV) + +--- +### 🐳 Docker Support +LittleLink includes Docker support for easy deployment and development. All Docker-related files are located in the `docker/` directory. + +To run LittleLink using Docker: + +```bash +docker compose -f docker/compose.yaml up +``` + +This will make the site available at http://localhost:8080 + +For more information about Docker configuration, see [docker/README.md](docker/README.md). + +---