Vaultwarden /data folder mount point with local path (Docker image))

Hi,

Is there are a way to check either in Portainer or docker compose, what the current local mount point to Vaultwarden’s /data folder is?
My problem is that, the files contained in /data are from September 2021. Normally, the backup should be updated every day, right? At least the last time there was a change in the Vaultwarden database.
Background: I’m trying to pull the backup files from /data. But there in a state as of someday in September.
I’m currently running Vaultwarden 2.23.0 as a Docker image aside of Portainer.

In portainer, or at least in your docker-compose file if you used that as mentioned it should be something similar to the below:

version: '3'

services:
  vaultwarden:
    container_name: vaultwarden
    image: vaultwarden/server:latest
    restart: unless-stopped
    ...
    volumes:
      - ./vw-data:/data

volumes: should point from somewhere on your system, ie. /opt/vaultwarden/vw-data/ which will mount as a volume inside of the Vaultwarden docker container at /data