docker
docker copied to clipboard
Examples: Nextcloud-FPM Docker image (Minor version updates)
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?
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..
... and set the NEXTCLOUD_UPDATE
env.