.dockerignore File
Get introduced to the making of the .dockerignore file which is good practice in making Docker images.
We'll cover the following...
Ignoring unnecessary files
In the Docker architecture, there is a separation between the Docker CLI and the Docker daemon. The Docker CLI is used to run commands, while the Docker daemon does most of the actual work. Building an image is no different; it is the Docker daemon that is actually ...
Docker CLI and Docker Daemon