From 7989e75d99f17dddc6cb799385407ce1c75ebb14 Mon Sep 17 00:00:00 2001 From: aptalca Date: Sun, 21 Mar 2021 21:47:17 -0400 Subject: [PATCH] Update readme with php8 tag info --- README.md | 9 +++++++++ readme-vars.yml | 6 +++++- 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index dc74e00..a9d52b1 100644 --- a/README.md +++ b/README.md @@ -59,6 +59,14 @@ The architectures supported by this image are: | arm64 | arm64v8-latest | | armhf | arm32v7-latest | +## Version Tags + +This image provides various versions that are available via tags. `latest` tag usually provides the latest stable version. Others are considered under development and caution must be exercised when using them. + +| Tag | Description | +| :----: | --- | +| latest | Stable Nextcloud releases (currently php7) | +| php8 | Experimental php8 based Nextcloud releases | ## Usage @@ -246,6 +254,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64 ## Versions +* **21.03.21:** - Publish `php8` tag for testing. * **25.02.21:** - Nginx default site config updated for v21 (existing users should delete `/config/nginx/site-confs/default` and restart the container). * **21.01.21:** - Fix php iconv (was breaking the mail addon). If installed, attempt to remove broken CODE Server app during startup. * **20.01.21:** - Increase php fcgi timeout to prevent 504 Gateway timeout errors (existing users should delete `/config/nginx/site-confs/default` and restart the container). diff --git a/readme-vars.yml b/readme-vars.yml index 6e001a0..101fecf 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -18,7 +18,10 @@ available_architectures: - { arch: "{{ arch_armhf }}", tag: "arm32v7-latest"} # development version -development_versions: false +development_versions: true +development_versions_items: + - { tag: "latest", desc: "Stable Nextcloud releases (currently php7)" } + - { tag: "php8", desc: "Experimental php8 based Nextcloud releases" } # container parameters common_param_env_vars_enabled: true @@ -75,6 +78,7 @@ app_setup_block: | # changelog changelogs: + - { date: "21.03.21:", desc: "Publish `php8` tag for testing." } - { date: "25.02.21:", desc: "Nginx default site config updated for v21 (existing users should delete `/config/nginx/site-confs/default` and restart the container)." } - { date: "21.01.21:", desc: "Fix php iconv (was breaking the mail addon). If installed, attempt to remove broken CODE Server app during startup." } - { date: "20.01.21:", desc: "Increase php fcgi timeout to prevent 504 Gateway timeout errors (existing users should delete `/config/nginx/site-confs/default` and restart the container)." }