update-check
update-check copied to clipboard
Should I mount /tmp with dockerized cli to avoid too many update check?
My node cli is dockerized, and I run it like this:
docker run --interactive --tty --rm -v $(pwd):/project -w /project dockerhub/mycli
What is the recommended solution to avoid checking the most recent version at each run of the CLI? Should I mount the host OS /tmp directory? Thanks!