How check installed version? #767

Closed
opened 2025-11-07 06:47:53 -06:00 by GiteaMirror · 9 comments
Owner

Originally created by @mikkelnl on GitHub (Aug 9, 2020).

Sorry for being a noob here ;-) but I was wondering how I can check which version I am running?

Bit info on my setup: I run the container on a synology nas via the docker package, and I usually update by exporting the settings, re-downloading the latest image from bitwardenrs/servers:latest, importing the settings and start the container.

I usually check updates via https://github.com/dani-garcia/bitwarden_rs/releases/

Is there any way to see which version is currently running? Maybe via a terminal command?

Originally created by @mikkelnl on GitHub (Aug 9, 2020). Sorry for being a noob here ;-) but I was wondering how I can check which version I am running? Bit info on my setup: I run the container on a synology nas via the docker package, and I usually update by exporting the settings, re-downloading the latest image from bitwardenrs/servers:latest, importing the settings and start the container. I usually check updates via https://github.com/dani-garcia/bitwarden_rs/releases/ Is there any way to see which version is currently running? Maybe via a terminal command?
GiteaMirror added the better for forum label 2025-11-07 06:47:53 -06:00
Author
Owner

@TheGreatestJannet commented on GitHub (Aug 9, 2020):

It is shown in the admin page if it is enabled.

@TheGreatestJannet commented on GitHub (Aug 9, 2020): It is shown in the admin page if it is enabled.
Author
Owner

@dani-garcia commented on GitHub (Aug 11, 2020):

Also printed on the logs just as the server starts.

@dani-garcia commented on GitHub (Aug 11, 2020): Also printed on the logs just as the server starts.
Author
Owner

@bfcns commented on GitHub (Apr 29, 2025):

docker exec -it vaultwarden ./vaultwarden --version

@bfcns commented on GitHub (Apr 29, 2025): `docker exec -it vaultwarden ./vaultwarden --version`
Author
Owner

@acwrobel1 commented on GitHub (Apr 29, 2025):

You can also see the installed version on the portal login/unlock screen.

@acwrobel1 commented on GitHub (Apr 29, 2025): You can also see the installed version on the portal login/unlock screen.
Author
Owner

@BlackDex commented on GitHub (Apr 29, 2025):

You can also see the installed version on the portal login/unlock screen.

That is only the web-vault version, not the Vaultwarden version, which is not the same.

@BlackDex commented on GitHub (Apr 29, 2025): > You can also see the installed version on the portal login/unlock screen. That is only the web-vault version, not the Vaultwarden version, which is not the same.
Author
Owner

@febryanvaldo commented on GitHub (May 28, 2025):

The easy way

docker exec -it ContainerID ./vaultwarden --version

Inspecting through RepoDigest,

docker image inspect ImageID

Search for "org.opencontainers.image.version": "YourVaultwardenVersionHere"

@febryanvaldo commented on GitHub (May 28, 2025): The easy way ``` docker exec -it ContainerID ./vaultwarden --version ``` Inspecting through RepoDigest, ``` docker image inspect ImageID ``` Search for `"org.opencontainers.image.version": "YourVaultwardenVersionHere"`
Author
Owner

@BlackDex commented on GitHub (May 28, 2025):

Or, /admin/diagnostics

@BlackDex commented on GitHub (May 28, 2025): Or, `/admin/diagnostics`
Author
Owner

@l4rm4nd commented on GitHub (Jun 7, 2025):

Or via API endpoint:

https://vaultwarden.example.com/api/version
@l4rm4nd commented on GitHub (Jun 7, 2025): Or via API endpoint: ```` https://vaultwarden.example.com/api/version ````
Author
Owner

@EricDuminil commented on GitHub (Jul 17, 2025):

@l4rm4nd : Thanks. No admin/ needed, which I explicitly do not want to enable.

@EricDuminil commented on GitHub (Jul 17, 2025): @l4rm4nd : Thanks. No `admin/` needed, which I explicitly do not want to enable.
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github-starred/vaultwarden#767