> For the complete documentation index, see [llms.txt](https://docs.create-magento-app.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.create-magento-app.com/container-images/elasticsearch-images/elasticsearch-6.8.md).

# ElasticSearch 6.8

To pull the ElasticSearch 6.8 image you can run the following command:

```bash
docker pull ghcr.io/scandipwa/create-magento-app:elasticsearch-6.8
```

You can set this image in the configuration file to be used in your project.

{% code title="cma.js" %}

```javascript
/** @type {import('@scandipwa/magento-scripts').CMAConfiguration} */
module.exports = {
    // ... other configurations
    configuration: {
        elasticsearch: {
            image: 'ghcr.io/scandipwa/create-magento-app:elasticsearch-6.8'
        }
    }
};
```

{% endcode %}
