Developer mode
Developer mode supports an active development environment with full, writable file system permissions. This option builds the Docker environment in developer mode and verifies configured service versions.
On macOS and Windows systems, performance is slower in developer mode because of additional file synchronization operations. However, you can improve performance by using either mutagen
or docker-sync
file synchronization tools when you generate the docker-compose.yml
configuration file. See Synchronizing data in Docker.
The ece-tools
version 2002.0.18 and later supports developer mode.
Large files (>1 GB) can cause a period of inactivity. DB dumps and archive files—ZIP, SQL, GZ, and BZ2—are not necessary to sync. You can find exclusions to these file types in the docker-sync.yml
and mutagen.sh
files.
See Configure Docker for details about customizing the Docker configuration.
Prerequisites:
- Complete the installation steps.
- Install file synchronization tools if needed.
To launch the Docker environment in developer mode:
-
In your local environment, generate the Docker Compose configuration file. You can use the service configuration options, such as
--php
, to specify a version.1
./vendor/bin/ece-docker build:compose --mode="developer"
If required, set the option for synchronizing data in Docker. For example:
1
./vendor/bin/ece-docker build:compose --mode="developer" --sync-engine="mutagen"
You can further customize the Docker Compose configuration file by adding additional options to the
build:compose
command. For example, you can set the software version for a service, or add Xdebug configuration. See service configuration options. -
Optional: If you have a custom PHP configuration file, copy the default configuration DIST file to your custom configuration file and make any necessary changes.
1
cp .docker/config.php.dist .docker/config.php
-
If you selected
docker-sync
for file synchronization, start the file synchronization.For the
docker-sync
tool:1
docker-sync start
If this is the first installation, expect to wait a few minutes for file synchronization.
-
Build files to containers and run in the background.
1
docker-compose up -d
-
If you selected
mutagen
for file synchronization, start the file synchronization.1
bash ./mutagen.sh
If you host your Docker environment on Windows and the session start fails, update the
mutagen.sh
file to change the value for the--symlink-mode
option toportable
. -
Install Magento in your Docker environment.
-
For Magento version 2.4 and 2.4.1 only, run the following command to apply patches before you deploy.
1
docker-compose run --rm deploy php ./vendor/bin/ece-patches apply
-
Deploy Magento in the Docker container.
1
docker-compose run --rm deploy cloud-deploy
1
docker-compose run --rm deploy magento-command deploy:mode:set developer
-
Run post-deploy hooks.
1
docker-compose run --rm deploy cloud-post-deploy
Developer mode does not require the
build
operation.
-
-
Configure and connect Varnish.
1
docker-compose run --rm deploy magento-command config:set system/full_page_cache/caching_application 2 --lock-env
1
docker-compose run --rm deploy magento-command setup:config:set --http-cache-hosts=varnish
-
Clear the cache.
1
docker-compose run --rm deploy magento-command cache:clean
-
Access the local Magento Cloud template by opening one of the following URLs in a browser:
-
http://magento2.docker
-
https://magento2.docker
-
-
Use the default credentials to log in to the Admin (
https://magento2.docker/admin
).- username =
Admin
- password =
123123q
- username =
-
Access the default email service:
http://magento2.docker:8025