DEV Community

Rupadana
Rupadana

Posted on

Install Docker on Ubuntu 18.04

Introduction

Docker is a technology that is currently popular with startups. With Docker, we containerize the application that we are going to build. With container technology, our application will have portability, maximum performance and make it easier to update.

What I mean by containerization is when you create an application, you build everything your application needs, such as a Web Server, Database, etc. so that when in Production the application that you deploy on Docker will be the same as on your Local/Laptop without reconfiguring the WebServer.

Installation

Following are the steps "How to install Docker on Ubundu 18.04

Update and upgrade the system so that we have the maximum system configuration

sudo apt update && sudo apt upgrade && sudo apt install docker.io
Enter fullscreen mode Exit fullscreen mode

After that docker will be successfully installed

Top comments (0)