I have installed Rancher
sudo docker run -d --restart=always -p 8080:8080 rancher/server
but I see the version v0.32.0

is it should be?
I have installed Rancher
sudo docker run -d --restart=always -p 8080:8080 rancher/server
but I see the version v0.32.0

is it should be?
This is the way Docker works; When you don’t specify a version you’re implicitly using :latest. So you downloaded 0.32 last time as :latest. When you say run again today there’s again no version, so it again uses :latest, and this time is already an image for that version on your machine, so that copy is used and is still 0.32.
docker pull rancher/server and then run, or run a specific version (docker run ... rancher/server:v0.35.0)
I understood. Thanks vincent!