ElasticSearch 6.8

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

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.

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

Last updated