Member-only story

How To Use Docker

Ziga Petek
5 min readMay 22, 2023

--

Or how to never install anything else again

Photo by Ian Taylor on Unsplash

Docker is an open source containerization platform and the one thing you didn’t knew you need until now. It enables you to develop, package and ship applications by running them in a container, an artificial environment, that includes everything you need to run any application.

Containers are lightweight, standalone, and portable units of software that include all the necessary dependencies and configurations needed to run an application. May it be Linux or Windows, it does not matter. You can run everything without ever needing to install anything locally on your machine.

By creating an isolated packaged environment that supports running your application, the underlying host loses its importance, and thus you lose one very well-known excuse for broken applications: “No idea what’s wrong, it works on my machine”.

TL;DR

Docker is a containerization platform, that enables you to run pretty much all software in isolated containers. Learn how to install Docker and compile and run your very first image.

How Does it Work

How does Docker Work
Photo by Laura Ockel on Unsplash

--

--

Ziga Petek
Ziga Petek

Written by Ziga Petek

Developer, writer and a pure genious ... I may have exagerated a little ... Author of https://divine-coding.com

No responses yet