docker

Docker Environment Variables Examples-DockerFiles

Docker Environment Variables Examples-DockerFiles Docker environment variables can be passed in to docker run command itself with the “-e” tag. “-e” tag takes the environment variable into the container and affects the runtime initiation...

Docker Swarm vs Kubernetes: Complete Guide

Docker Swarm vs Kubernetes: Complete Guide Container orchestration is emerging very fast and so are the tools namely Kubernetes and Docker Swarm. This both tools does work for us to run containers inside the...

Docker Architecture and Components Explained

Docker Architecture and Components Explained The architecture Docker uses is a client-server model. It consists of major components such as  Docker’s Client, Docker Host, Network and Storage components, and the Docker Registry/Hub. At a...

Docker Volume Tutorial | Docker Documentation

Docker Volume Tutorial | Docker Documentation As we know, docker runs the application into the containers. So, when the container terminates, data within the container is eliminated and goes away with the containers. Therefore,...

Difference Between Docker Image and Container

Difference Between Docker Image and Container Docker Image A docker image is an immutable(not modifiable) file that contains code, dependencies, libraries, tools and the whole runtime environment which is needed in order to run...