Reuse container layer on docker-compose for GreenGrass deployment

0

We have a component that starts multiple container on our greengrass device using docker-compose. According to the documentation, the correct way to provide the private docker images from ECR is to supply them as artefact:

"URI": "docker:public.ecr.aws/cloudwatch-agent/cloudwatch-agent:latest"

One important aspect of our project is that we can reuse layers of our images. We have limited bandwidth on our devices and images can be big (i.e. PyTorch). If we have modification to do to our images, usually only the last small layer will be updated over the limited bandwidth network. I am worried when we are using images as artifacts, the whole image is going to be re-downloaded. Is that the case ?

I currently have a workaround of using the "install" lifecycle step to execute "docker-compose pull" and removing the artifacts, but that has the issue of being run on reboot, while I would rather only have it update the images when there is a new deployment.

TSpark
preguntada hace 2 años380 visualizaciones
1 Respuesta
1
Respuesta aceptada

Hello TSpark,

Docker pull will not redownload images which already exist. It will only download layers which have changed or do not exist. When using Greengrass to download images as artifacts, Greengrass simply calls docker pull, so all the same caching which Docker does applies equally to Greengrass.

AWS
EXPERTO
respondido hace 2 años
  • Awesome, that is great news. Thanks a lot !

No has iniciado sesión. Iniciar sesión para publicar una respuesta.

Una buena respuesta responde claramente a la pregunta, proporciona comentarios constructivos y fomenta el crecimiento profesional en la persona que hace la pregunta.

Pautas para responder preguntas