Docker & Dockerfile

It is an open-source project that automates the deployment of software applications inside containers by providing an additional layer of abstraction and automations of OS level virtualization on Linux. In simple words, Docker is a tool for running your applications inside containers. Container package all the dependencies and code your app needs to run into a single file, which will run the same way on any machine. Terminologies Docker Container A container is a standard unit of software that packages up code and all its dependencies, so the application runs quickly and reliably from one computing environment to another....

May 14, 2022 · 7 min · Arjun Adhikari

Apache - Locally Host Website

Hello friends, In this tutorial I’m guiding you how to host a simple website in Apache Web Server in Linux. So, let’s get started. Install Apache First, let’s install Apache from the apt repository in Linux. Enter the following command on your terminal to install the Apache web server: sudo apt install apache2 After successful installation, here are some commands that may come handy while running Apache web server. To start Apache 2, run:...

Jan 5, 2021 · 2 min · Arjun Adhikari