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:**