Hi there,
I wanted to upgrade my nextcloud running in docker. The last time I did this, i got burned because the upgrade skipped over major versionsā¦ so I was cautious this time around.
Checked currently running version: 22.1.11
Newest version available: 24 !
So I added
a version number to my docker compose file
nextcloud-app:
image: nextcloud:23.0.7
then ran
docker-compose down
docker-compose pull
docker-compose up -d
Back online but in maintenance mode, looked online found others with the same issue. Solution:
sudo docker exec -it -u www-data 55090da6a189 bash -c ā./occ maintenance:mode --offā
Nextcloud will be updated to version 23.0.7
Time to click ā¦
Exception: Updates between multiple major versions and downgrades are unsupported.
Isnāt 22 ā 23 the major version change I tried? What did I do wrong here?