diff --git a/Dockerfile b/Dockerfile index d3c183c..a97bff4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,10 +1,11 @@ -FROM docker.io/library/nextcloud:23.0.9 +FROM docker.io/library/nextcloud:23.0.10 RUN apt-get update &&\ apt-get install -y \ supervisor \ ffmpeg \ - libmagickcore-6.q16-6-extra &&\ + libmagickcore-6.q16-6-extra &&\ + apt clean &&\ rm -rf /var/lib/apt/lists/* &&\ mkdir /var/log/supervisord /var/run/supervisord diff --git a/README.md b/README.md index 2687caa..d16999c 100644 --- a/README.md +++ b/README.md @@ -15,8 +15,9 @@ For instructions on using these images, go to https://github.com/nextcloud/docke and https://docs.nextcloud.com/. Simply use `ghcr.io/0ranki/nextcloud-previews/nextcloud:` -instead of `docker.io/library/nextcloud`. At the moment the images don't use the `latest` -tag, so you'll need to use a specific version. +instead of `docker.io/library/nextcloud`. A `latest` tag is also included, but since +the process of tagging it is manual, you should check that the digests match with the +latest versioned image, in case I forgot to tag it. To pull e.g. version 24.0.3: ``` @@ -34,4 +35,4 @@ a backup copy of `config.php` starting from versions 23.0.7 and 24.0.3 (noticed feature missing a bit late) ## Disclaimer Nextcloud is a registered trademark of Nextcloud GmbH, and I am in no way affiliated -with them. These images are built for personal use and for learning GitHub actions. \ No newline at end of file +with them. These images are built for personal use and for learning GitHub actions.