Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(dev): add
ENVIRONMENT_AUTOPULL
override to Makefile (vectordot…
…dev#18446) * feat(dev): add `ENVIRONMENT_AUTOPULL` override to Makefile This commits adds an override to disable force pulling the environment image, leaving the container tool to pull it only when necessary instead. Before this change, every time `make environment ENVIRONMENT_AUTOBUILD=false` is executed, it would force pull the image in `ENVIRONMENT_UPSTREAM` even if the image already exists locally. This is not efficient when the value in `ENVIRONMENT_UPSTREAM` is a static/fixed tag. With the new override, the environment can be started very quickly when the image exists locally: make environment ENVIRONMENT_AUTOBUILD=false ENVIRONMENT_AUTOPULL=false The default value for `ENVIRONMENT_AUTOPULL` is `true` to preserve the current behavior. Signed-off-by: Hugo Hromic <[email protected]> * chore: add `AUTOPULL` to spell checker expect-list * added to `expect.txt` so it is together with `AUTOBUILD` --------- Signed-off-by: Hugo Hromic <[email protected]>
- Loading branch information