Set up Magento 2 Development Environment with Docker & Warden

Warden is a CLI utility for orchestrating Docker-based developer environments and enables multiple local environments to run simultaneously without port conflicts. docker-compose is used to control everything that Warden runs. Using Warden, a custom environment can be set up for each project. The environment can also be overridden or extended. Warden supports the following applications … Read more

Set up PHP Development Environment with Docker

This article shows how you can set up a PHP development environment using Docker. We will be installing PHP, MySQL & Nginx, and PHPMyAdmin in the docker containers. Here’s a basic introduction to docker and docker tools & terminologies: Introduction to Docker and its Tools & Terminologies. Pre-requisites Docker should be installed on your machine: … Read more

Introduction to Docker and its Tools & Terminologies

Docker is an open-source software platform that enables developers to build, run, test, and deploy applications quickly. Your application or software is packaged into standardized units called containers. The container contains everything that’s needed to run the software including libraries, system tools, code, and other dependencies. Basically, docker helps to separate your application from your … Read more