Login
Remember
Register
Ask a Question
Through SDLC, how Docker provides steady computing environment?
0
votes
asked
Mar 9, 2020
in
DevOps
by
Hodge
Through SDLC, how Docker provides steady computing environment?
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Mar 9, 2020
by
Hodge
Below are the steps on how Docker provides steady computing environment:
A Docker image is created is built by a Docker file and all the project codes are contained in that image.
You can create many Docker containers by running that image.
Now, you can upload the image on Docker Hub and anyone can pull the image from Docker Hub to build a container.
...