Docker
The Docker platform is the only container platform to build, secure and manage the widest array of applications from development to production.
-
How to add Xdebug to your Docker and PhpStorm
What is Xdebug? Many developers, even with extensive experience in PHP, debug their code with the typical PHP functions such as var_dump(), print_r() or simple echo statements, to dump the content of the variables. Although this method sometimes can get you out of trouble, often falls short. Here is when you should use Xdebug. In…
-
Make Magento 2 and Docker on MacOS faster with docker-sync
Docker on MacOS for development have serious performance problems, especially working with Magento 2 & Docker, why? On Linux systems, Docker directly leverages the kernel of the host system, and file system mounts are native. On Windows and Mac, it’s slightly different. They do not provide a Linux Kernel, so Docker starts a virtual machine…
-
How to set up Docker for Sylius projects
Why using Docker for Sylius projects? I used to develop my projects locally, installing all the dependencies and managing all the configuration myself… That’s OK when you code only under one framework, one technology. But then you want to upgrade your OS (Scary time for Mac OS users right?) The Docker platform is the only…
Search
Recent Posts
- How to Test WordPress Plugins with PHPUnit in 2024: A Step-by-Step Guide
- How to Create and Activate a Virtual Environment with Python venv
- Pillow Tutorial: Image Manipulation in Python
- PacMan – DFS Problem on HackerRank solved in Python 3
- Q-Learning from Scratch in Python