running ```podman run \ --name lakefs2 \ ... ...
# help
g
running
Copy code
podman run \
  --name lakefs2 \
  ...
  <http://docker.io/treeverse/lakefs:latest|docker.io/treeverse/lakefs:latest> run
launch lakeFS 1.3.1, browsing to the web server at 8000, it notifies a new version available, which will forward me to the Github page where I can see the latest being 1.7.0 How can I get that?
i
You need to pull the latest image. 1.3.1 is cached locally with tag latest. Add
--pull=always
to your run command
🙏 1
g
it's pulling, nice, thanks
🙏 2
s
--pull=newer
Copy code
Pull if the image on the registry is newer than the one in the local containers storage. An image is considered to be newer when the digests are different. Comparing the time stamps is prone to errors. Pull errors are suppressed if a local image was found.
👍 3
I don't know why that's not the default option...
👀 1