After updating my opencloud from 1.1.0 to 2.1.0 I lost all of my files because the filesystem was changed
docker compose pull
docker compose up -d --force-recreate
Decompresedfs was changed to posixfx, and all old files are not reachable!
So, need to remove :latest by default here:
https://github.com/opencloud-eu/opencloud/blob/9b1a79f7d7fc816e13ceab49eb47d8fc5aea4dc2/deployments/examples/opencloud_full/opencloud.yml#L9
image: ${OC_DOCKER_IMAGE:-opencloudeu/opencloud-rolling}:${OC_DOCKER_TAG:-latest}
Otherwise someone could try to update their app from 1.1.0 and will face the same issue.
How to fixed it and save files
downloaded this file (I've deleted it earlier):
wget https://github.com/opencloud-eu/opencloud/blob/main/deployments/examples/opencloud_full/decomposed.yml
edited .env file:
DECOMPOSEDS3=:decomposed.yml
After that files appeared :)