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:
parent
543ded0a5f
commit
38a446640f
22
README.md
22
README.md
|
|
@ -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
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue