Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions deploy/docker/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -100,7 +100,7 @@ EOL
-p 11235:11235 \
--name crawl4ai \
--shm-size=1g \
unclecode/crawl4ai:0.8.6
unclecode/crawl4ai:latest
```

* **With LLM support:**
Expand All @@ -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.
Expand Down Expand Up @@ -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:**
Expand Down