I tested Docker and I did the following:
- Image call:
docker/whalesay - Another image was built with some minor changes.
- Threw it with a different name into my shared repository (it was necessary to download about the same size that I downloaded).
- Then I created another image with this public image as a starting point.
- It has only one team. But again I had to upload the whole image back.
My question is, should Docker not only upload changes? I read it somewhere. It seems I am making some kind of stupid mistake, I canβt believe that we have to download the whole image every time after minor changes. Did I miss something?
This is the Dockerfile that I use to create a fishsay image:
FROM docker/whalesay:latest RUN apt-get -y update && apt-get install -y fortunes CMD /usr/games/fortune -a | cowsay
The keel image was ~ 180 MB; so when i click i dont just need to load changed layers?
source share