docker push to private registry - An image does not exist locally with the tag: localhost:5000/xxxx
Solution 1:
You need to tag your image with registry host included
docker image tag coinbase:latest localhost:5000/coinbase:latest
Check docker push documentation for details and examples.