docker icon indicating copy to clipboard operation
docker copied to clipboard

Examples: Nextcloud-FPM Docker image (Minor version updates)

Open MegadoomerX opened this issue 2 years ago • 1 comments

Hi, another question regarding the docker-compose examples:

The image used for all PHP-FPM installations is nextcloud:fpm-alpine, however I have now since around two weeks an update notification for version 24.0.2 in the settings overview, yet docker-compose up -d says the app is up-to-date (24.0.1).

Is it common that the docker container doesn't receive minor version updates? (I've only started using the docker version recently)

I don't suppose I'm expected to use the web updater, since the changes would probably be overwritten?

Is there a way to use another image possibly?

MegadoomerX avatar Jul 05 '22 09:07 MegadoomerX

docker-compose up -d will not download any image updates. If you run image: nextcloud:v24 you need to run docker-compose pull to download latest v24 before you start it with docker-compose up. if want more control over the system you can run image: nextcloud:v24.0.x which allows you to control the updates on very granular level at the drawback you need to apply every change manually..

isdnfan avatar Sep 12 '22 10:09 isdnfan

... and set the NEXTCLOUD_UPDATE env.

J0WI avatar Apr 04 '23 17:04 J0WI