Basic question about starting and restarting containers

Hi vytautasrask,

Dont use docker run [image name] again and again , you are just creating multiple containers using docker run.
if u want to have one container to work on , use docker run once and then u can docker stop [container id] and docker start [container id] to reuse the same container.