Toolkit Docker Tips
Internal Element AI Image Registries
There are two (2) internal registries with distinct purposes.
volatile-registry.console.elementai.com
: This registry is meant to store images that
do not live for long. 24 hours after having been created (or last updated) a tag will
be deleted. Once a week, garbage collection is performed on the registry. This is to
ensure that images that are only temporarily used are not kept forever. This will typically
be used for automated tests.
Note
It is also possible to extend the storage duration by appending -<number>days
or -<number>months
(like -3months
) to the tag used when pushing the image.
The maximum duration is 90 days
or 3 months
.
registry.console.elementai.com
: This registry is meant to store images that are susceptible
to live for longer. Images meant to be deployed or reused later fall into this category.
Housekeeping is not done automatically in this registry.
Pushing an Image to an Internal Registry
Consult the tutorial section Docker Images.