Docker Series : Configure a LAMP stack with Docker Compose

What is Docker Compose As seen in my previous article, we can configure docker based LAMP stack using Docker images. Another way to do it is to use Docker Compose. This tool can be used to define and run multi-container applications easily. Indeed, through a YAML file (docker-compose.yml) we will store all the configurational information needed …

Docker Series : Configure a LAMP stack with Docker Compose Read More »

Docker Series : Install Docker on Windows

Today, let’s see how to configure a Docker environment on your Windows 10 Computer. Docker Desktop requirements If you are running an old version of Windows, you can use Docker ToolBox instead. Download Docker Desktop First thing to do is to download Docker Desktop and follow the instructions ! Start Docker Desktop for Windows Docker does not start automatically …

Docker Series : Install Docker on Windows Read More »

Docker Series : How to create Docker images and run containers

What is a Docker image A Docker image is a file, comprised of multiple layers, used to execute code in a Docker container. An image is essentially built from the instructions for a complete and executable version of an application, which relies on the host OS kernel. When the Docker user runs an image, it becomes one or …

Docker Series : How to create Docker images and run containers Read More »