How to install Docker Compose in Ubuntu 20.04

What is Docker Compose? Docker Compose is a tool that lets you define and execute multi-container Docker applications. With Docker Compose you will use YAML files to configure application’s services and, once they are defined, with only one command we can create and execute all the services as described in configuration. Previous Requisites In order to carry out the actions described in this article we will need to have: A server running the system Ubuntu 20.04. Docker installed following the steps described in How to install Docker in Ubuntu 20.04.…

Read more

How to install Docker in Ubuntu 20.04

What is Docker? Docker is a system that allows you to encapsulate applications within conainers, similar to virtual machines but more manageable, flexible and transportable. These containers have all the information necessary to run the applications they contain isolated (services, configurations, applications, data, etc …). Thus it is possible to migrate these containers from one server to another quickly and easily, without having to adapt the servers where they are executed in a specific way. Previous Requisites In order to carry out the actions described in this article we will…

Read more