From f65d2509731565ef747e25bb58f8516614ffa9a8 Mon Sep 17 00:00:00 2001 From: rob Date: Wed, 24 Dec 2025 01:21:56 -0400 Subject: [PATCH] docs: Add Docker section to README MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Friends can now clone and test without installing anything locally. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- README.md | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/README.md b/README.md index 5ba9797..9a05197 100644 --- a/README.md +++ b/README.md @@ -433,6 +433,28 @@ If SmartTools saves you time, consider supporting the project: MIT - Use it, modify it, share it. +## Docker + +Run SmartTools without installing anything locally: + +```bash +# Clone the repo +git clone https://gitea.brrd.tech/rob/SmartTools.git +cd SmartTools + +# Build the container +docker-compose build + +# Run tests +docker-compose run --rm test + +# Use the CLI +docker-compose run --rm cli smarttools list + +# Interactive shell +docker-compose run --rm shell +``` + ## Links - [Installation Guide](docs/INSTALL.md)