If you do not update Nextcloud AIO for a long time (6+ months), when you eventually update in the AIO interface you will find Nextcloud no longer works. This is due to incompatible PHP versions within the nextcloud container. There is unfortunately no way to fix this from a maintainer POV if you refrain from upgrading for so long.
The only way to fix this on your side is upgrading regularly (e.g. by enabling daily backups which will also automatically upgrade all containers) and following the steps below to get back to a normal state:
- Start all containers from the AIO interface
- Now, it will report that Nextcloud is restarting because it is not able to start due to the above mentioned problem
- Find out with which PHP version your installed Nextcloud is compatible by running
sudo docker exec nextcloud-aio-nextcloud cat lib/versioncheck.php
.- There you will find information about the max. supported PHP version
- Make a mental note of this
- Stop the Nextcloud container and the Apache container by running
sudo docker stop nextcloud-aio-nextcloud && sudo docker stop nextcloud-aio-apache
- Run the following commands in order to reverse engineer the Nextcloud container:
sudo docker pull assaflavie/runlike echo '#!/bin/bash' > /tmp/nextcloud-aio-nextcloud sudo docker run --rm -v /var/run/docker.sock:/var/run/docker.sock assaflavie/runlike -p nextcloud-aio-nextcloud >> /tmp/nextcloud-aio-nextcloud sudo chown root:root /tmp/nextcloud-aio-nextcloud
- Now open
/tmp/nextcloud-aio-nextcloud
with a text editor, and edit the container tag:
To change | Replace with |
---|---|
nextcloud/aio-nextcloud:latest |
nextcloud/aio-nextcloud:php{version}-latest |
nextcloud/aio-nextcloud:latest-arm64 |
nextcloud/aio-nextcloud:php{version}-latest-arm64 |
- e.g.
nextcloud/aio-nextcloud:php8.0-latest
ornextcloud/aio-nextcloud:php8.0-latest-arm64
- However, if you are unsure check the docker hub (https://hub.docker.com/r/nextcloud/aio-nextcloud/tags)
- Using nano and the arrow keys to navigate:
sudo nano /tmp/nextcloud-aio-nextcloud
making changes as above, then[Ctrl]+[o]
->[Enter]
and[Ctrl]+[x]
to save and exit.
- Next, stop and remove the current container:
sudo docker stop nextcloud-aio-nextcloud sudo docker rm nextcloud-aio-nextcloud
- Now start the Nextcloud container with the new tag by simply running
sudo bash /tmp/nextcloud-aio-nextcloud
which at startup should automatically upgrade Nextcloud to a more recent version. If not, make sure that there is noskip.update
file in the Nextcloud datadir. If there is such a file, simply delete the file and restart the container again.
Info: You can open the Nextcloud container logs withsudo docker logs -f nextcloud-aio-nextcloud
. - After the Nextcloud container is started (you can tell by looking at the logs), simply restart the container again with
sudo docker restart nextcloud-aio-nextcloud
until it does not install a new Nextcloud update anymore upon the container startup. - Now, you should be able to use the AIO interface again by simply stopping the AIO containers and starting them again which should finally bring up your instance again.
- If not and if you get the same error again, you may repeat the process starting from the beginning again until your Nextcloud version is finally up-to-date.
- Now, if everything is finally running as usual again, it is recommended to create a backup in order to save the current state. Consider enabling daily backups if doing regular upgrades is a hassle for you.
Prerequisite: have all containers from AIO interface running.
Click to expand
docker volume create portainer_data
docker run -d -p 8000:8000 -p 9443:9443 --name portainer --restart=always -v /var/run/docker.sock:/var/run/docker.sock -v portainer_data:/data portainer/portainer-ce:latest
- If you have a reverse proxy
- you can setup and navigate using a domain name.
- For the standard AIO install
- Open port 9443 on your firewall
- navigate to
https://<server-ip>:9443
- Accept the insecure self-signed certificate and set an admin password
- If prompted to add an environment
- add local
- Here you should see all the various containers running
- This can be done by selecting the checkbox's next to the containers' name and clicking the Stop button at the top
- or you can click into individual containers and stop them there
- navigate to
nextcloud-aio-nextcloud
and click onlogs
, you should see something along the lines of:
This version of nextcloud is not compatible with >=php 8.2, you are currently running php 8.2.18
Make note of the version which is compatible, rounding down to 1 digit after the dot.
- In this example we would want php 8.1 since anything with 8.2 or above is incompatible
In general it should be nextcloud/aio-nextcloud:php8.x-latest-arm64
or nextcloud/aio-nextcloud:php8.x-latest
replacing x
with the version you require.
However, if you are unsure check the docker hub (https://hub.docker.com/r/nextcloud/aio-nextcloud/tags)
- Navigate to the
nextcloud-aio-nextcloud
container within portainer - Click
Duplicate/Edit
- Within image, change this to the correct version from Step 5
- Click
Deploy the container
- if you are prompted to force repull the image click the slider and press pull image
Navigate to the nextcloud-aio-nextcloud logs and you will see the container updating
Once you see no more activities in the logs or a message like NOTICE: ready to handle connections
, we've done it!
Now you can handle everything through the AIO admin interface and stop and restart the containers normally.
docker stop portainer
docker rm portainer
docker volume rm portainer_data
- Make sure you close port 9443 on your firewall and delete any necessary reverse proxy hosts.