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

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

How to create docker container Date posted : 28/12/2018 What is Docker ? Docker is a containerization platform that packages your application and all its dependencies together in the form of a docker container to ensure that your application works seamlessly in any environment. What is Container ? Docker Container… Continue Reading How to create docker container