I have setup docker in fedora23, I pull Ubuntu form docker hub and, Run a container then, installed LAMP server.
After installed LAMP Sever, then Commit my container following
docker commit <container name> <image name >
Then Save image to tar.gz
docker save imagename > imagename.tar.gz
After Save the image, load to this imagename.tar.gz to load other machine. this docker images doesn't have LAMP Server, only have Fresh Ubuntu.
Suggest Me How to move docker image to other machine with changes.