> For the complete documentation index, see [llms.txt](https://docs.wproofreader.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.wproofreader.com/v6.10.0.0/deployment/installation/docker/run-the-image-from-docker-hub.md).

# Run the image from Docker Hub

Use this option for evaluation. It does not require building an image.

{% hint style="warning" %}
The public Docker Hub images have a fixed set of installed languages and models. Use a custom build for production.
{% endhint %}

### Available tags

* **Common image**: webspellchecker/wproofreader:<code class="expression">space.vars.current\_version</code>
* **Base image**: webspellchecker/wproofreader:<code class="expression">space.vars.current\_version</code>-base

### What is preinstalled

These images have four languages installed:

* `en_US`
* `en_GB`
* `en_CA`
* `en_AU`

This cannot be changed for the public images.

AI models:

* Common image: English proofreading + autocomplete models (`WPR_AI_MODELS=1,2`)
* Base image: no AI models installed (`WPR_AI_MODELS=0`)

### Run the container

Running the container is described in the [README](https://github.com/WebSpellChecker/wproofreader-docker#create-and-run-docker-container).

Activate the license on container start using:

* `--env WPR_LICENSE_TICKET_ID=<license_ticket_id>`

Example (HTTP):

```bash
docker run -d \
  -p 80:8080 \
  --env WPR_PROTOCOL=2 \
  --env WPR_DOMAIN_NAME=localhost \
  --env WPR_WEB_PORT=80 \
  --env WPR_VIRTUAL_DIR=wscservice \
  --env WPR_LICENSE_TICKET_ID=<license_ticket_id> \
  webspellchecker/wproofreader:latest
```

{% hint style="info" %}
License activation at container startup requires Internet access. For production, prefer build-time activation. See: [License activation in Docker](/v6.10.0.0/deployment/licensing/license-activation-in-docker.md#option-2-activate-on-container-startup).
{% endhint %}

### Verify

* Health and license time:
  * [Health check](/v6.10.0.0/api-reference/auxiliary-api-commands/health-check.md)
* Log-based license validation:
  * [License verification](/v6.10.0.0/deployment/licensing/license-verification.md)

### Links

* [Docker Hub](https://hub.docker.com/r/webspellchecker/wproofreader)
