Member-only story
Docker & its Command line
DOCKER is an open-source tool used for containerization of applications in an isolated environment containing all the packages, & libraries. Docker container platform is always running on top of the host operating system. Containers are containing the binaries, libraries, and the application itself. Containers do not contain a guest operating system which ensures that containers are lightweight.
An application inside a container can run on any system that has docker installed. so there is no need to build and configure the application multiple times on the different platforms.
RUN Dockerfile →Image →RUNNING Image → Containers
In this blog, I’ll be mainly focusing on Docker commands that you can leverage into your daily practice for your projects for ease in development purposes. I’m also attaching a few of my handmade notes to illustrate more clearly about the commands and filters.