SSO Support & Authentication with Portainer using Microsoft OAuth providerJan 16, 2023·3 min read·794
Permanent fix for Let's encrypt SSL Certificate renewal issuesLet’s Encrypt is a certificate authority that provides free SSL certificates. SSL Certificates are small data files that digitally bind a cryptographic key to an organization’s details. When installed on a web server, it activates the padlock and the...Jan 16, 2023·3 min read·78
Proxy Servers explained...!So, what are proxies ? Proxy is a server that sits in between a client and an actual server. Word "proxy" defines, someone or something acting on behalf of something else. In computer science proxy means one server acting on behalf of other servers. ...Jun 27, 2022·10 min read·122
DNS Explained..!What Exactly Is DNS? DNS or Domain Name Systems is a translation system that allows the users to browse the internet with a language we're comfortable with. Instead of typing and memorizing long sequences of numbers we can use names and letters (host...Jun 26, 2022·18 min read·89
Docker Cheetsheet 🐳Manage images docker build Create an image from a Dockerfile. docker build [options] . -t "app/container_name" # name --build-arg APP_HOME=$APP_HOME # Set build-time variables docker run Deploys the container from docker image. docker run ...Jun 25, 2022·3 min read·56
Containerization vs. VirtualizationWhat's the Difference ? Containerization and virtualization, both, are methods of deploying many isolated services on the same platform and they are both prominent tools within the hosting world. Both are a means for storing data within hosting plat...Jun 25, 2022·4 min read·125
A beginner’s guide to Docker — How to create your first Docker application 🐳Before starting to build the app, let's first install the pre-requisites that are required for building the docker containers, 1. Install Docker on your machine For Linux (Ubuntu/Debian Based distros): sudo apt install docker.io For MacOSX: you ca...Jun 6, 2022·4 min read·122
Introduction to Docker 🐳In this article lets try to understand one of the most popular tools used to containerize and deploy applications i.e. Docker. It makes packaging & deploying applications extremely easy. We will try to look at the things that make Docker so special a...Jan 5, 2022·3 min read·66