# create interactive shell docker run -i -t ubuntu /bin/bash # we tag the image with the desired destination repository: docker tag ubuntu onetipp-1.0.0.1 # save docker image docker save onetipp-1.0.0.1 > onetipp-1.0.0.1_docker.tar # would then take that copy and load it: pbzip2 -d onetipp-1.0.0.1_docker.tar.bz2 docker load -i onetipp-1.0.0.1_docker.tar # Now run the container and notes that Bob's this file is not there: docker run -i -t onetipp-1.0.0.1 /bin/bash # Now run the container and notes that Bob's this file is not there: docker commit 021cc3784bcf onetipp-1.0.0.1 https://docs.docker.com/linux/step_six/ docker images docker tag c4403f9907f3 onetipp/onetipp-devel:latest docker login --username=onetipp --email=sebastian.enger@gmail.com docker push onetipp/onetipp-devel:latest c4.xlarge # show docker images and get id of current version to save: docker ps -a docker commit 021cc3784bcf onetipp-1.0.0.1 docker save onetipp-1.0.0.1 > onetipp-1.0.0.2.tar