I\'m wondering where Docker\'s images are exactly stored to in my local host machine.
Can I share my Docker-Image without using the Docker-Hub or a Docker
Based on this blog, one could share a docker image without a docker registry by executing:
docker save --output latestversion-1.0.0.tar dockerregistry/latestversion:1.0.0
Once this command has been completed, one could copy the image to a server and import it as follows:
docker load --input latestversion-1.0.0.tar