docker run --> 'name is already in use by container ...
intellipaat.com › community › 43446Feb 12, 2020 · 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.