Upgrade from old version

Hello everybody,
I need to upgrade my old docker container :

docker inspect bitwardenrs/server | grep -i vers
        "DockerVersion": "",
                "org.opencontainers.image.version": "1.20.0"

to the latest vaultwarden.

Is it safe to jump several versions ahead from 1.20 to vaultwarden 1.25 or do I have to manage some database upgrade too ?
I’m still using the default sqlite3 db in a separate docker volume.

Thanks for your suggestions .

As far as I know you should be able to update straight to the latest release and Vaultwarden will apply any missing migrations automatically. To be on the safe side you probably want to backup up everything just in case something goes wrong.

As you mentioned, you’re using SQLite as the database backend. You should create a backup of the database file. You can do this by stopping the Bitwarden RS container and then copying the SQLite database file to a safe location.
docker stop bitwardenrs/server
docker cp bitwardenrs/server:/data/db.sqlite3 /path/to/backup