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.

1 Resposta
1
Resposta aceita

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
ESPECIALISTA
respondido há 2 anos
  • Awesome, that is great news. Thanks a lot !

Você não está conectado. Fazer login para postar uma resposta.

Uma boa resposta responde claramente à pergunta, dá feedback construtivo e incentiva o crescimento profissional de quem perguntou.

Diretrizes para responder a perguntas