After update with docker everything disappeared

Hi everyone.
After updating with docker to the last versione (2.0.8.1_beta_2024-05-07);
commands:
docker compose pull duplicati
docker compose up -d duplicati

when I returned to the home page everything disappeared! I found a new installation.
Where did the previous settings go?

Thanks to anyone who helps me.

Hi @orebla85, welcome to the forum!

The backup settings are stored in the DATA folder which needs to be outside the Docker container as it has persistent data.

Could you check that the folder exists and contains at least the file Duplicati-server.sqlite?

If you have not set up the DATA folder, your settings database was lost when you updated the container. You then need to restore or setup your configuration again.

https://hub.docker.com/r/duplicati/duplicati has details on the Docker from the Duplicati team.

Thanks for the replies.
I used installation via docker compose; this is my code:

  duplicati:
    image: lscr.io/linuxserver/duplicati:latest
    container_name: duplicati
    environment:
      - PUID=1000
      - PGID=1000
      - TZ=Europe/Rome
      - CLI_ARGS= #optional
    volumes:
      - /home/MY/duplicati/config:/config
      - /home/MY:/source
    ports:
      - 8200:8200
    restart: unless-stopped

I seem to have followed this guide correctly: Docker

I saved all backups on Google Drive.
How can I set the external /data folder so that the next update doesn’t happen to me again?
Thanks again

1 Like

I think my /data folder remained inside the container. And the .sqlite file was changed right on the update date.