Menu
TAG

Docker

Step-by-Step Guide to Migrate Docker Containers
Docker 4 min read

Step-by-Step Guide to Migrate Docker Containers

Docker makes it simple to deploy container images that contain a fully functional operating system and make use of the host kernel. We have already written an article covering the installation and use of Docker containers. In this post, we will go through how to migrate Docker containers from one server to another server. Docker containers are relatively easy to set up and manage. We can find hundreds of containers on docker hub and create a full-fledged virtual operating system with jus

DockerUncategorizedhow-to
Host Multiple Websites on Docker Containers
Docker 5 min read

Host Multiple Websites on Docker Containers

Docker is an extremely useful platform that enables developers to easily develop and deploy applications. In this article, we’ll look at how to use Docker containers to host multiple websites on a single server. One of the most significant benefits of using Docker containers is that they are lightweight, faster, and easier to manage. This month, I moved two of my custom-built applications from two separate servers to a single server, each in its own Docker container. It’s easier to manag

DockerLinux TutorialsUncategorized
How To Install Docker On Ubuntu
Docker 4 min read

How To Install Docker On Ubuntu

Docker containers contain the application and all its dependencies to be run in isolation like virtual machines. But Docker containers isolate the operating system instead of the hardware. Unlike virtual machines, docker containers also use the host’s kernel, making the containers more portable and lighter. If you use Ubuntu 20.04 or earlier version, this article will help you install Docker on Ubuntu. * What is Docker? * How to install Docker on Ubuntu? * Uninstall old doc

DockerUncategorizedhow-to
Portainer Docker: Simplifying Container Management
Docker 5 min read

Portainer Docker: Simplifying Container Management

Our previous article discussed Docker. If you are not familiar with Docker containers, you should learn about them. Docker containers can be useful for developers. Docker packages are widely available and simple to install in almost all distribution repositories. However, managing them can be difficult, especially for those who dislike the command line. Portainer Docker Portainer Docker lets you manage Docker containers across multiple platforms. Linux distributions can easily inst

DockerSystem AdministrationUncategorized
What is Docker Container
Docker 5 min read

What is Docker Container

Docker is one of my favorite tools. If you are a developer, docker container should be in your skillset. It makes the development & deployment process easier and a lot less time-consuming. In this article, I will talk about Docker and demonstrate how to run docker containers step-by-step. Docker was founded by Solomon Hykes and Sebastien Pahl in 2010 and it was launched in 2011. Docker was publicly released in 2013 and in the same year, Docker was made open source. Initially, D

DockerUncategorizedtutorial