0 votes
in Docker by
What is Docker Images in simple terms?

1 Answer

0 votes
by

Docker images are templates that contain the libraries, dependencies, config, system files, and so forth, needed to create Docker containers. They contain several read-only layers of intermediate Images. You can download Docker images from registries such as Docker Hub or create them from scratch. Docker images are generally used to create Docker containers by running the docker run command within them.

...