How to Install Nginx and Let’s Encrypt SSL with HTML + Docker – Ubuntu 20.04 Date: 26-06-2021 Prerequisites: 1. Install Docker on your server.2. Install Docker Compose on your server.3. Configure DNS to point the domain to the server to install SSL.Note: In this document, I use ramesh.pheonixsolutions.com domain name.… Continue Reading How to Install Nginx and Let’s Encrypt SSL with HTML + Docker – Ubuntu 20.04

1)To achieve the above, first we need to install docker. Please follow the below link to install docker.https://docs.docker.com/engine/install/ubuntu/#install-using-the-repository 2) Create a sample application. Create a directory called “helloapp”. Create file index.js.mkdir helloappcd helloappvi index.js 3) Copy and paste the below content. const express = require(“express”);const app = express();app.get(“/”, (req, res)… Continue Reading Deploy a sample app with Docker over SSL

React js web app deployment in Docker Date: 22-02-2021 Step 1: Create a Dockerfile in the directory root with below content based on your deployment procedure. =====FROM node:12.2.0-alpine as react_build #also say WORKDIR /home/ubuntu/workspace/ #copy the react app to the container COPY . /home/ubuntu/workspace/ # #prepare the container for building… Continue Reading React js web app deployment in Docker

How to remove stopped and unused container in Docker. Date: 06-02-2021 Step 01: List all Docker containers using the command.# docker ps -aOR# docker container ls -a Step 02: Enter the below command to stop the specific container.# docker container stop [Container_id]Note: [Container_id] – Numeric ID of the container from… Continue Reading How to remove stopped and unused container in Docker

Date Posted : 21/12/2018 How to install docker-compose in Centos -7.6 Docker is a most handy DevOps tool used nowadays. In this post we are gonna explain about docker-composer installation steps. Prerequisites We assume that Docker is already installed on your server. For instance, you can verify the docker version… Continue Reading How to install docker-compose in Centos -7.6