How to Create Docker Image & Pushed to Docker Hub or Amazon Elastic Registry

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 and other dependencies, and deploy it as one package. Docker hub is the repository of container images. We …

Steps to Install & Configure Docker Compose on Ubuntu 20.04 LTS

Hello, here we are discussing about for Docker Compose. Docker compose is a docker tool. It is used for deploying the docker images & easier for users to manage the processes of docker containers, including starting up, shutting down, and setting up intra-container linking and volumes. There are steps to setup docker compose on Ubuntu: …

How to Create Task Definitions for Amazon ECS Cluster on AWS

A task definition is required to run Docker containers in Amazon ECS. Docker image to use with each container in task. The task definition is a text file, in JSON format, that describes one or more containers, up to a maximum of ten, that form your application. Login to aws portal. Click on Services.   …

Steps to Run Docker Commands on Ubuntu 20.04 LTS

Hello Dear Readers, In this Blog we will discuss about how the docker works & How to create a image using docker? Docker is a free & open source containerization platform. Using docker commands, we can easily create a own images & push/pull the image. There are some docker commands to run on ubuntu: Step …

Steps to Install & Configure HashiCorp Nomad on Ubuntu

Nomad is a free & open source HashiCorp tool.It is a simple and flexible workload orchestrator which is used for deploy and manage containers and non-containerized applications across on-prem and clouds at scale. There are some steps to Setup HashiCorp Nomad on Ubuntu: Step 1: Update the System. apt update Step 2:Install HashiCorp Nomad on …