WIP: Nextcloud and Nginx up version #30
1
.gitignore
vendored
1
.gitignore
vendored
@ -1 +1,2 @@
|
||||
/.envrc
|
||||
|
||||
|
3wordchant marked this conversation as resolved
|
||||
|
||||
5
.vscode/settings.json
vendored
5
.vscode/settings.json
vendored
@ -1,5 +0,0 @@
|
||||
{
|
||||
"shellcheck.customArgs": [
|
||||
"--shell=bash"
|
||||
]
|
||||
}
|
||||
@ -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"
|
||||
|
decentral1se
commented
Is Is `24.x` -> `25.x` a major bump for the Nextcloud image? Might wanna check this once over?
javielico
commented
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.
3wordchant
commented
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.
javielico
commented
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
|
||||
|
3wordchant
commented
Would it be OK to switch this to 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
|
||||
|
||||
Reference in New Issue
Block a user
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
gitignoreconfig feature in all the other recipes? You can add this stuff to your own personal globalgitignore?