Docker components

  • Docker images are read-only templates, archive containing all the “data” needed to run the application.
  • Containers are run from them, so they can be started and stopped and deleted without affecting the image.
  • You can have many containers running the same image.