From 873998e43f6511228cdc4d919e5ce51f0612cd56 Mon Sep 17 00:00:00 2001 From: Derek Cooper Date: Thu, 4 Jun 2026 10:51:12 -0700 Subject: [PATCH] included information on just pulling individual app files --- README.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/README.md b/README.md index 52e72b4..fafb1c2 100644 --- a/README.md +++ b/README.md @@ -63,7 +63,18 @@ Each application lives in its own folder with a `docker-compose.yaml` file. You 3. Set any required environment variables and deploy **Docker Compose CLI** + +Clone only the app folder you need using a sparse checkout, then deploy: + ```bash +# 1. Clone the repo without checking out all files +git clone --filter=blob:none --sparse https://git.chns.tech/CHNS/Docker-Compose.git +cd Docker-Compose + +# 2. Pull down only the app folder you want (e.g. Uptime-Kuma) +git sparse-checkout set + +# 3. Copy and fill in the environment file, then deploy cd cp .env.example .env # Edit .env and fill in your values