Add pre-built container pull instructions to README

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 <noreply@anthropic.com>
This commit is contained in:
rob 2025-12-29 23:21:12 -04:00
parent 543ded0a5f
commit 38a446640f
1 changed files with 21 additions and 1 deletions

View File

@ -441,7 +441,27 @@ MIT - Use it, modify it, share it.
## Docker ## 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 ```bash
# Clone the repo # Clone the repo