Compare commits

...
Author SHA1 Message Date
autonomic-bot ce5308c7f5 chore: upgrade lasuite-drive redis to 8.10.2, collabora to 26.04.4.1.1
cc-ci/testme cc-ci: failure
collabora 26.04 images exec coolwsd directly (--use-env-vars; no shell in the
image), so the sh/start-collabora-online.sh entrypoint and extra_params env are
gone: ssl options move to command args, the healthcheck switches to
coolwsd --probe, and the admin panel password moves from the collabora_p
docker secret to the COLLABORA_ADMIN_PASSWORD env var (empty = locked).

redis 8.10.2 is a security release (transaction ACL-revocation bypass,
unauthenticated cluster-bus join; cache sidecar, no cluster mode here).
2026-09-21 21:20:55 +00:00
trav 95489da91f chore: publish 0.13.0+v0.22.0 release 2026-09-21 10:48:22 -07:00
trav 217fb7da0d Merge pull request 'Upgrade 7f0164c' (#12) from upgrade-7f0164c into main
Reviewed-on: https://git.coopcloud.tech/coop-cloud/lasuite-drive/pulls/12
2026-09-21 17:47:58 +00:00
autonomic-bot f89cbbc046 chore: upgrade lasuite/drive to v0.22.0, mailcatcher to v0.11.0, web nginx to 1.31.6; pull MinIO from Quay
cc-ci/testme cc-ci: success
2026-09-18 03:40:21 +00:00
autonomic-bot 8324cf2730 chore: upgrade lasuite-drive app/backend/celery/celery-beat to v0.22.0
cc-ci/testme cc-ci: success
2026-09-11 04:20:22 +00:00
autonomic-bot 2662398786 chore: upgrade mailcatcher to v0.11.0, web nginx to 1.31.5
cc-ci/testme cc-ci: success
2026-09-04 02:31:09 +00:00
autonomic-bot 7f0164cb00 chore: upgrade lasuite-drive app/backend/celery/celery-beat to v0.21.2
cc-ci/testme cc-ci: success
2026-08-28 03:18:06 +00:00
trav a02dd080ac chore: publish 0.12.0+v0.21.0 release 2026-08-24 12:48:00 -04:00
trav 4d80b26a64 Merge pull request 'Upgrade 1935df0' (#11) from upgrade-1935df0 into main
Reviewed-on: https://git.coopcloud.tech/coop-cloud/lasuite-drive/pulls/11
2026-08-24 16:47:36 +00:00
2 changed files with 20 additions and 25 deletions
+5 -4
View File
@@ -28,8 +28,6 @@ SECRET_MINIO_RU_VERSION=v1
SECRET_POSTGRES_P_VERSION=v1 SECRET_POSTGRES_P_VERSION=v1
# DJANGO_HOST_EMAIL_PASSWORD # DJANGO_HOST_EMAIL_PASSWORD
SECRET_EMAIL_PASS_VERSION=v1 SECRET_EMAIL_PASS_VERSION=v1
# COLLABORA_ADMIN_PASSWORD
SECRET_COLLABORA_P_VERSION=v1
############################################################################## ##############################################################################
# EMAIL # EMAIL
@@ -77,9 +75,12 @@ LOGGING_LEVEL_LOGGERS_APP=INFO
############################################################################## ##############################################################################
# COLLABORA ADMIN PANEL # COLLABORA ADMIN PANEL
############################################################################## ##############################################################################
# Username for the Collabora admin panel (https://COLLABORA_DOMAIN/browser/dist/admin/admin.html) # Credentials for the Collabora admin panel (https://COLLABORA_DOMAIN/browser/dist/admin/admin.html)
# Password is managed via Docker secret 'collabora_p' # Since collabora 26.04 (image execs coolwsd directly; no shell in the image), the panel
# password moved from the retired Docker secret 'collabora_p' to this env var.
# Empty/unset = panel stays locked.
#COLLABORA_ADMIN_USERNAME=admin #COLLABORA_ADMIN_USERNAME=admin
#COLLABORA_ADMIN_PASSWORD=
############################################################################## ##############################################################################
# BACKUPS # BACKUPS
+15 -21
View File
@@ -95,14 +95,14 @@ services:
app: app:
user: "${DOCKER_USER:-1000}" user: "${DOCKER_USER:-1000}"
image: lasuite/drive-frontend:v0.21.0 image: lasuite/drive-frontend:v0.22.0
networks: networks:
- backend - backend
deploy: deploy:
labels: labels:
- "traefik.enable=false" - "traefik.enable=false"
- "coop-cloud.${STACK_NAME}.timeout=${TIMEOUT:-120}" - "coop-cloud.${STACK_NAME}.timeout=${TIMEOUT:-120}"
- "coop-cloud.${STACK_NAME}.version=0.11.0+v0.19.0" - "coop-cloud.${STACK_NAME}.version=0.13.0+v0.22.0"
environment: environment:
<<: [ *common-env ] <<: [ *common-env ]
healthcheck: healthcheck:
@@ -116,7 +116,7 @@ services:
backend: backend:
user: ${DOCKER_USER:-1000} user: ${DOCKER_USER:-1000}
image: lasuite/drive-backend:v0.21.0 image: lasuite/drive-backend:v0.22.0
command: [ "gunicorn", "-c", "/usr/local/etc/gunicorn/drive.py", "drive.wsgi:application" ] command: [ "gunicorn", "-c", "/usr/local/etc/gunicorn/drive.py", "drive.wsgi:application" ]
entrypoint: > entrypoint: >
sh -c "if [ \"$$AUTO_MIGRATIONS\" = \"true\" ]; then /migrate.sh; fi && exec /abra-entrypoint.sh /usr/local/bin/entrypoint \"$$@\"" -- sh -c "if [ \"$$AUTO_MIGRATIONS\" = \"true\" ]; then /migrate.sh; fi && exec /abra-entrypoint.sh /usr/local/bin/entrypoint \"$$@\"" --
@@ -145,7 +145,7 @@ services:
celery: celery:
user: ${DOCKER_USER:-1000} user: ${DOCKER_USER:-1000}
image: lasuite/drive-backend:v0.21.0 image: lasuite/drive-backend:v0.22.0
networks: networks:
- backend - backend
command: [ "celery", "-A", "drive.celery_app", "worker", "-l", "INFO" ] command: [ "celery", "-A", "drive.celery_app", "worker", "-l", "INFO" ]
@@ -167,7 +167,7 @@ services:
celery-beat: celery-beat:
user: ${DOCKER_USER:-1000} user: ${DOCKER_USER:-1000}
image: lasuite/drive-backend:v0.21.0 image: lasuite/drive-backend:v0.22.0
networks: networks:
- backend - backend
command: [ "celery", "-A", "drive.celery_app", "beat", "-l", "INFO", "--schedule", "/tmp/celerybeat-schedule" ] command: [ "celery", "-A", "drive.celery_app", "beat", "-l", "INFO", "--schedule", "/tmp/celerybeat-schedule" ]
@@ -214,7 +214,7 @@ services:
- postgres_p - postgres_p
redis: redis:
image: redis:8.10.1 image: redis:8.10.2
healthcheck: healthcheck:
test: ["CMD", "redis-cli", "ping"] test: ["CMD", "redis-cli", "ping"]
interval: 10s interval: 10s
@@ -224,12 +224,12 @@ services:
- backend - backend
mailcatcher: mailcatcher:
image: sj26/mailcatcher:v0.10.0 image: sj26/mailcatcher:v0.11.0
networks: networks:
- backend - backend
minio: minio:
image: minio/minio:RELEASE.2025-09-07T16-13-09Z image: quay.io/minio/minio:RELEASE.2025-09-07T16-13-09Z
environment: *minio-env environment: *minio-env
healthcheck: healthcheck:
test: ["CMD", "mc", "ready", "local"] test: ["CMD", "mc", "ready", "local"]
@@ -273,13 +273,12 @@ services:
- "backupbot.backup=${ENABLE_BACKUPS:-true}" - "backupbot.backup=${ENABLE_BACKUPS:-true}"
collabora: collabora:
image: collabora/code:25.04.10.3.1 image: collabora/code:26.04.4.1.1
entrypoint: > # 26.04 images exec coolwsd directly (--use-env-vars; no shell in the image),
sh -c " # so ssl options are passed as args and the panel password comes from the env.
export password=\"$$(cat /run/secrets/collabora_p)\" && command: ["--o:ssl.enable=false", "--o:ssl.termination=true"]
exec /start-collabora-online.sh"
healthcheck: healthcheck:
test: [ "CMD", "curl", "-f", "http://localhost:9980/hosting/discovery" ] test: [ "CMD", "/usr/bin/coolwsd", "--probe", "--o:ssl.enable=false" ]
interval: 30s interval: 30s
retries: 5 retries: 5
start_period: 60s start_period: 60s
@@ -288,11 +287,9 @@ services:
- backend - backend
- proxy - proxy
environment: environment:
- extra_params=--o:ssl.enable=false --o:ssl.termination=true
- username=${COLLABORA_ADMIN_USERNAME:-admin} - username=${COLLABORA_ADMIN_USERNAME:-admin}
- server_name=${COLLABORA_DOMAIN} - server_name=${COLLABORA_DOMAIN}
secrets: - password=${COLLABORA_ADMIN_PASSWORD:-}
- collabora_p
deploy: deploy:
labels: labels:
- "traefik.enable=true" - "traefik.enable=true"
@@ -350,7 +347,7 @@ services:
web: web:
image: nginx:1.31.4 image: nginx:1.31.6
configs: configs:
- source: nginx_conf - source: nginx_conf
target: /etc/nginx/conf.d/default.conf target: /etc/nginx/conf.d/default.conf
@@ -422,9 +419,6 @@ secrets:
minio_ru: minio_ru:
external: true external: true
name: ${STACK_NAME}_minio_ru_${SECRET_MINIO_RU_VERSION} name: ${STACK_NAME}_minio_ru_${SECRET_MINIO_RU_VERSION}
collabora_p:
external: true
name: ${STACK_NAME}_collabora_p_${SECRET_COLLABORA_P_VERSION}
email_pass: email_pass:
external: true external: true
name: ${STACK_NAME}_email_pass_${SECRET_EMAIL_PASS_VERSION} name: ${STACK_NAME}_email_pass_${SECRET_EMAIL_PASS_VERSION}