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