docker compose

How to Run Multi-Container Applications with Docker Compose

Reading Time: 4 minutes If you have a need to define a service that requires more than one docker container to function, Docker Compose is the right tool for you. In this blog, you’ll see how easily you can run a multi-container docker application using Docker Compose. Docker Compose – Introduction Docker Compose is basically a docker tool to define and run multi-container Docker applications. Each of these containers Continue Reading

Getting started with Docker Compose

Reading Time: 5 minutes Prerequisite 1) Install Docker (Link – Docker setup) 2) Install Docker Compose (Link – Docker compose setup) Lets gear up with the basics of Docker. What is docker? Docker is a tool designed to make it easier to create, deploy, and run applications by using containers. Containers allow a developer to package up an application with all of the parts it needs, such as libraries Continue Reading