This can be a bit confusing , so it's okay.
Two commands can help you out here , these ones :
$ docker run this will start fresh new container.
$ docker start this will start one or all of the stopped containers.
The issues here is that you already have a container running with the name "registry-v1"
check out all the processes running using this command :
$ docker ps -a
Once you find the container with the same name running delete it using the command :
$ docker rm -f [ name of the container ]
Then you can push the container you are trying to run. You should not get the same error again.
Hope this helped :)
I can see that you are new to Docker , but that's okay every one is beginner at some point. You should check out docker training course for getting trained by industry professionals.