WIP: Nextcloud and Nginx up version #30

Closed
javielico wants to merge 5 commits from javielico/nextcloud:main into main
3 changed files with 5 additions and 9 deletions

1
.gitignore vendored
View File

@ -1 +1,2 @@
/.envrc
3wordchant marked this conversation as resolved
Review

I'd prefer to leave these out if possible? It seems pretty boilerplate-ish and most of these files won't end up in such a repository. Also, it raises the questions, why doesn't such a gitignore config feature in all the other recipes? You can add this stuff to your own personal global gitignore?

# ~/.gitconfig
[core]
  excludesfile = ~/.gitignore_global
I'd prefer to leave these out if possible? It seems pretty boilerplate-ish and most of these files won't end up in such a repository. Also, it raises the questions, why doesn't such a `gitignore` config feature in all the other recipes? You can add this stuff to your own personal global `gitignore`? ``` # ~/.gitconfig [core] excludesfile = ~/.gitignore_global ```

View File

@ -1,5 +0,0 @@
{
"shellcheck.customArgs": [
"--shell=bash"
]
}

View File

@ -1,7 +1,7 @@
version: "3.8"
services:
web:
image: nginx:1.23.1
image: nginx:1.22.1
configs:
- source: nginx_conf
target: /etc/nginx/nginx.conf
@ -35,7 +35,7 @@ services:
- "traefik.http.middlewares.${STACK_NAME}-redirect.headers.SSLHost=${DOMAIN}"
app:
image: nextcloud:24.0.6-fpm
image: nextcloud:25.0.1-fpm
depends_on:
- db
configs:
@ -78,12 +78,12 @@ services:
failure_action: rollback
order: start-first
labels:
- "coop-cloud.${STACK_NAME}.version=2.1.4+24.0.6-fpm"
- "coop-cloud.${STACK_NAME}.version=2.1.6+25.0.1-fpm"
Review

Is 24.x -> 25.x a major bump for the Nextcloud image? Might wanna check this once over?

Is `24.x` -> `25.x` a major bump for the Nextcloud image? Might wanna check this once over?
Review

Will do some tests from my end, not sure if you want to test anything at your end too before merging.

Will do some tests from my end, not sure if you want to test anything at your end too before merging.
Review

I peeped the Nextcloud changelog and it doesn't look like anything major happened in those two releases. Personally happy for this to remain a "patch" version upgrade on the Co-op Cloud side as long as an upgrade or two goes smoothly.

I peeped [the Nextcloud changelog](https://nextcloud.com/changelog/) and it doesn't look like anything major happened in those two releases. Personally happy for this to remain a "patch" version upgrade on the Co-op Cloud side as long as an upgrade or two goes smoothly.
Review

Perfect, I will perform a few tests this week coming and report back, it will be good if you can also test from your end and see if you're also happy with the result of the switchover to V25.

Perfect, I will perform a few tests this week coming and report back, it will be good if you can also test from your end and see if you're also happy with the result of the switchover to V25.
- "backupbot.backup=true"
- "backupbot.backup.path=/var/www/html/config/,/var/www/html/data/,/var/www/html/custom_apps/"
cron:
image: nextcloud:24.0.6-fpm
image: nextcloud:25.0.1-fpm

Would it be OK to switch this to 25.0.1 as well?

Would it be OK to switch this to `25.0.1` as well?
volumes:
- nextcloud:/var/www/html/
- nextapps:/var/www/html/custom_apps:cached