TIL how to work with Gitlab-CI’s Pull Policy
In a .gitlab-ci.yml
job, if you do not specify a tag for an image, the latest
tag is used by default.
The default configuration of the gitlab-runner to pull Docker images is if-not-present
, which means the image is only loaded if it is not already present. This in turn …