As it relates to stopping/starting a container?
After stopping a container:
docker stop <container id>
It seems like I can run either "start" or "restart" to bring it back up. I'm wondering if there is any difference, or if they are functionally equivalent:
docker restart <container id>
docker start <container id>