Skip to content
Oleg Posyniak edited this page Apr 3, 2020 · 6 revisions

Welcome to the magento-cloud-docker wiki!

Development

Building image

Custom endpoint

You can add the custom binary script like ./bin/dev-ece-docker with the next content:

#!/usr/bin/env php
<?php
/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */
require __DIR__ . '/../bootstrap.php';

use Magento\CloudDocker\App\Container;

$container = new Container(
    dirname(__DIR__),
    __DIR__ . '/../../MAGENTO_PROJECT',
    __DIR__ . '/../../MAGENTO_PROJECT'
);

$application = new Magento\CloudDocker\Application($container);
$application->run();

Replace MAGENTO_PROJECT with a directory name containing an M2 project. This will allow you to run binary commands locally without requiring your custom changes as a Composer dependency.

Branches

develop - represents the next minor release, new functionality and fixes 1.0 - represents current minor release, fixes only

Clone this wiki locally