0 votes
in DevOps by

Through SDLC, how Docker provides steady computing environment?

1 Answer

0 votes
by

Below are the steps on how Docker provides steady computing environment:

  1. A Docker image is created is built by a Docker file and all the project codes are contained in that image.
  2. You can create many Docker containers by running that image.
  3. Now, you can upload the image on Docker Hub and anyone can pull the image from Docker Hub to build a container.
...