1.

Describe the lifecycle of Docker Container?

Answer»

The different stages of the docker container from the START of creating it to its end are CALLED the docker container life cycle. 
The most important stages are:

  • CREATED: This is the state where the container has just been created NEW but not started yet.
  • Running: In this state, the container would be running with all its associated processes.
  • Paused: This state happens when the running container has been paused.
  • Stopped: This state happens when the running container has been stopped.
  • Deleted: In this, the container is in a DEAD state.


Discussion

No Comment Found