From cc37ec218a124949a056c5f742422e771ad51f0d Mon Sep 17 00:00:00 2001 From: CI-DEV <154627941+IlumCI@users.noreply.github.com> Date: Fri, 1 Aug 2025 12:36:19 +0300 Subject: [PATCH] Update README.md --- README.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/README.md b/README.md index bfcf4264..e893bfc4 100644 --- a/README.md +++ b/README.md @@ -146,6 +146,24 @@ $ cd swarms $ pip install -e . ``` +### Using Docker + +The easiest way to get started with Swarms is using our pre-built Docker image: + +```bash +# Pull and run the latest image +$ docker pull kyegomez/swarms:latest +$ docker run --rm kyegomez/swarms:latest python -c "import swarms; print('Swarms is ready!')" + +# Run interactively for development +$ docker run -it --rm -v $(pwd):/app kyegomez/swarms:latest bash + +# Using docker-compose (recommended for development) +$ docker-compose up -d +``` + +For more Docker options and advanced usage, see our [Docker documentation](DOCKER.md). + --- ## Environment Configuration