How to make sure that i am running the latest collabora?

Hi, I followed the “Updating” section of this page (https://nextcloud.com/collaboraonline/), but it seemed nothing changed afterward.

Is the Container ID supposed to be different with each version?

xxx@collabora:~$ sudo docker ps
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
37206cda2265 f96ef2d9c0a3 “/bin/sh -c 'bash st…” 21 months ago Up 7 days 127.0.0.1:9980->9980/tcp stupefied_curran
xxx@collabora:~$
xxx@collabora:~$ sudo docker pull collabora/code
Using default tag: latest
latest: Pulling from collabora/code
bd97b43c27e3: Already exists
6960dc1aba18: Already exists
2b61829b0db5: Already exists
1f88dc826b14: Already exists
73b3859b1e43: Already exists
529acdf963a5: Pull complete
44552961a03c: Pull complete
fb93a911b2d5: Pull complete
Digest: sha256:2f5bad8918259ce6c45907e7179f64d35d3506a4b9ef5f47b2003a6e0a475430
Status: Downloaded newer image for collabora/code:latest
xxx@collabora:~$ sudo docker ps
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
37206cda2265 f96ef2d9c0a3 “/bin/sh -c 'bash st…” 21 months ago Up 7 days 127.0.0.1:9980->9980/tcp stupefied_curran

You pulled a new docker image. Now you need to stop and delete your existing container, and start a new one based on the new image.

docker stop stupefied_curran
docker rm stupefied_curran
docker run -d -t [other parameters you need] collabora/code

ah, i see. You can’t see/use the new version until you have ‘rm’ the old version and create another instance from the download.

I now have “wonderful_johnson”!

Thanks for your help.