11. Docker Start,Stop,Summary

01

Docker doesn't re-use the container, it creates a new one,

** pic from 44:00 mins

when you run

docker ps

it only shows the current running container and not the other ones created,
use the -a 'all' flag to see them

docker ps -a

02 registry