From 38a446640fced2db225f0d2ef0ce50edc145f459 Mon Sep 17 00:00:00 2001 From: rob Date: Mon, 29 Dec 2025 23:21:12 -0400 Subject: [PATCH] Add pre-built container pull instructions to README MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Users can now pull the image directly from the Gitea registry: docker pull gitea.brrd.tech/rob/smarttools:latest 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- README.md | 22 +++++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 5c7c658..95455eb 100644 --- a/README.md +++ b/README.md @@ -441,7 +441,27 @@ MIT - Use it, modify it, share it. ## Docker -Run SmartTools in a container: +### Pre-built Container (Fastest) + +Pull and run the pre-built image directly: + +```bash +# Pull from registry +docker pull gitea.brrd.tech/rob/smarttools:latest + +# Run SmartTools +docker run -it --rm gitea.brrd.tech/rob/smarttools smarttools --help + +# List available tools +docker run -it --rm gitea.brrd.tech/rob/smarttools smarttools list + +# Interactive shell +docker run -it --rm gitea.brrd.tech/rob/smarttools bash +``` + +### Build from Source + +Alternatively, build the container yourself: ```bash # Clone the repo