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)

AWS Security LIVE!

Tune in for AWS Security LIVE!

Join AWS Security LIVE! for expert insights and actionable tips to protect your organization and keep security teams prepared.

Learn More

👋 Kindness is contagious

Dive into an ocean of knowledge with this thought-provoking post, revered deeply within the supportive DEV Community. Developers of all levels are welcome to join and enhance our collective intelligence.

Saying a simple "thank you" can brighten someone's day. Share your gratitude in the comments below!

On DEV, sharing ideas eases our path and fortifies our community connections. Found this helpful? Sending a quick thanks to the author can be profoundly valued.

Okay