Category: Docker, containerization

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.

In this blog, I’ll be mainly focusing on Dockercommands that you can leverage into your daily practice for your projects for ease in development purposes.

ex:- suppose the container id of your container id is2feu3483vdk6.Instead of writing/copying the id you can simply go with:docker start 2feu Also, there is a docker cp command that comes into the picture to save our time from Rebuilding images that are having huge requirements & packages installed.

Instead of rebuilding the whole packages that you can usedocker cp commands to copy only those files who have changes in it.

Related Articles