From e770e74847a90b29b407649016a459e3b410e504 Mon Sep 17 00:00:00 2001 From: Blake Sheffield Date: Wed, 5 Aug 2026 18:39:18 -0400 Subject: [PATCH] Updated Docker README.MD versions A couple of places in this doc did not have correct version numbers. For examples that showcase exact versions, I updated them to the latest version number, for examples that showcase something else, I defaulted to using latest --- deploy/docker/README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/deploy/docker/README.md b/deploy/docker/README.md index 7ce0dcd00..4e7154750 100644 --- a/deploy/docker/README.md +++ b/deploy/docker/README.md @@ -63,7 +63,7 @@ Our latest stable release is `0.9.2`. Images are built with multi-arch manifests ```bash # Pull the latest stable version (0.9.2) -docker pull unclecode/crawl4ai:0.8.6 +docker pull unclecode/crawl4ai:0.9.2 # Or use the latest tag docker pull unclecode/crawl4ai:latest @@ -100,7 +100,7 @@ EOL -p 11235:11235 \ --name crawl4ai \ --shm-size=1g \ - unclecode/crawl4ai:0.8.6 + unclecode/crawl4ai:latest ``` * **With LLM support:** @@ -111,7 +111,7 @@ EOL --name crawl4ai \ --env-file .llm.env \ --shm-size=1g \ - unclecode/crawl4ai:0.8.6 + unclecode/crawl4ai:latest ``` > The server will be available at `http://localhost:11235`. Visit `/playground` to access the interactive testing interface. @@ -184,7 +184,7 @@ The `docker-compose.yml` file in the project root provides a simplified approach ```bash # Pulls and runs the release candidate from Docker Hub # Automatically selects the correct architecture - IMAGE=unclecode/crawl4ai:0.8.6 docker compose up -d + IMAGE=unclecode/crawl4ai:latest docker compose up -d ``` * **Build and Run Locally:**