
After completing the Docker installation on your Linux Mint or Ubuntu system, read the blog articles that teach you how to use Laradock. How To Install Docker CE on Linux Systems To verify the installation, use the command: docker -version Docker version 23.0. If you use PHP and Laravel for the development of your applications, an excellent option to use Docker with Laravel is the Laradock project. By taking advantage of Docker’s methodologies to build, test and deploy code quickly, you can significantly reduce the delay between writing the code and executing it in production.


With Docker, you can manage your infrastructure just as it manages your applications.

In this article we will see how to install and configure in Linux Debian: Mint and Ubuntu based distributions.ĭocker allows you to separate apps from your infrastructure so you can quickly deploy your softwares on servers. You need to install it to execute on operating systems. The following operations need to be done under the root user, so use sudo -i or su root to switch to the root user to do so.Docker is an Open Source platform for development, deploy and application execution. (via Using Docker Compose) Installing Docker using official sources In fact, you may see a lot of projects on GitHub/GitLab doing this now. Others can simply clone your repository and start writing applications. The great advantage of using Compose is that you can define your application stack in a file so that it sits at the root of your project repository (which is now version controlled) and makes it easy for others to participate in your project. With Compose, you can create YAML files to define services and start or clean up everything with a single command. Traditionally, ops would need to run docker run to start various containers, and once there are too many containers, it is impossible to remember all the run parameters and commands at once, so we can use Docker Compose to solve this problem.ĭocker Compose is a tool to help define and share multi-container applications. The open source Docker community is dedicated to improving this type of technology and making it freely available for the benefit of all users.

What is Docker?ĭocker is a containerisation technology that allows containers to be built quickly on a server and run software without polluting the host, eliminating the need to install and configure various environments. This article applies to both Debian 10 Buster and Ubuntu 20.04 Focal.
