Compare commits

...

10 Commits

Author SHA1 Message Date
renovate-bot 802d7e8477 Add renovate.json
continuous-integration/drone/pr Build is failing
2026-03-10 17:51:03 +00:00
notplants 016728f970 Merge pull request '0.7.1v0.12.0' (#4) from 0.7.1v0.12.0 into main
continuous-integration/drone/push Build is failing
Reviewed-on: #4
2026-02-20 14:22:44 +00:00
notplants 9c4a1f823c bump to 0.7.1+v0.12.0
continuous-integration/drone/pr Build is failing
continuous-integration/drone/tag Build is passing
2026-02-20 14:20:07 +00:00
notplants 0411553e36 add minio backup label and fix pg restore path 2026-02-20 14:19:59 +00:00
notplants 7146f3e8be fix release note: consistent placeholder
continuous-integration/drone/push Build is failing
continuous-integration/drone/tag Build is passing
2026-02-18 16:57:01 +00:00
notplants 306914f9d8 fix release note: use placeholder domain 2026-02-18 16:56:37 +00:00
notplants c408893d5f fix release note: lowercase secret name 2026-02-18 16:56:08 +00:00
notplants 196d20a92e bump to 0.7.0+v0.12.0 2026-02-18 16:54:43 +00:00
notplants 8ec47fa554 fix release note
continuous-integration/drone/push Build is failing
2026-02-18 11:26:08 -05:00
notplants e6ebe275a3 update release note
continuous-integration/drone/push Build is failing
2026-02-18 11:24:54 -05:00
6 changed files with 18 additions and 5 deletions
+6
View File
@@ -75,6 +75,12 @@ LOGGING_LEVEL_LOGGERS_APP=INFO
# Password is managed via Docker secret 'collabora_p'
#COLLABORA_ADMIN_USERNAME=admin
##############################################################################
# BACKUPS
##############################################################################
# Set to false to disable backup-bot labels (default: true)
#ENABLE_BACKUPS=true
##############################################################################
# WOPI SCHEDULING
##############################################################################
+1 -1
View File
@@ -3,7 +3,7 @@
export ABRA_ENTRYPOINT_VERSION=v11
export NGINX_CONF_VERSION=v6
export ONLYOFFICE_CONF_VERSION=v2
export PG_BACKUP_VERSION=v3
export PG_BACKUP_VERSION=v4
environment() {
# this exports all the secrets as environment variables
+2 -1
View File
@@ -99,7 +99,7 @@ services:
labels:
- "traefik.enable=false"
- "coop-cloud.${STACK_NAME}.timeout=${TIMEOUT:-120}"
- "coop-cloud.${STACK_NAME}.version=0.6.0+v0.12.0"
- "coop-cloud.${STACK_NAME}.version=0.7.1+v0.12.0"
environment:
<<: [ *common-env ]
healthcheck:
@@ -280,6 +280,7 @@ services:
- "traefik.http.middlewares.${STACK_NAME}_minio-cors.headers.accessControlMaxAge=600"
- "traefik.http.middlewares.${STACK_NAME}_minio-cors.headers.addVaryHeader=true"
- "traefik.http.routers.${STACK_NAME}_minio.middlewares=${STACK_NAME}_minio-cors"
- "backupbot.backup=${ENABLE_BACKUPS:-true}"
collabora:
image: collabora/code:25.04.9.1.1
+1 -1
View File
@@ -10,7 +10,7 @@ function backup {
}
function restore {
cd /var/lib/postgresql/data/
cd /var/lib/postgresql/data/pgdata
restore_config(){
# Restore allowed connections
cat pg_hba.conf.bak > pg_hba.conf
+2 -2
View File
@@ -3,7 +3,7 @@
After upgrading, you must generate the new secret for collabora to work:
```
abra app secret generate <app-name> collabora_p
abra app config <app-name> # set SECRET_COLLABORA_P_VERSION=v1
abra app secret generate <app-domain> collabora_p v1
abra app config <app-domain> # set SECRET_COLLABORA_P_VERSION=v1
```
+6
View File
@@ -0,0 +1,6 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended"
]
}