ruk·si

Docker
Interactive Modifications

Updated at 2015-11-14 00:44
  1. docker pull owner/image checkout the newest Docker image.
  2. docker run -d --name new-stuff owner/image
  3. docker exec -it new-stuff /bin/bash
  4. Make changes inside the image.
    pip install --upgrade pip
    
  5. exit
  6. docker commit -m "Update pip" -a "ruksi" new-stuff owner/image
  7. docker images, you should see the recent commit on owner/image
  8. docker push owner/image