From 7f0164cb00fd02cd0188873e3eb8ac172f0ee3db Mon Sep 17 00:00:00 2001 From: autonomic-bot Date: Fri, 28 Aug 2026 03:18:06 +0000 Subject: [PATCH] chore: upgrade lasuite-drive app/backend/celery/celery-beat to v0.21.2 --- compose.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/compose.yml b/compose.yml index 2d43693..6c066af 100644 --- a/compose.yml +++ b/compose.yml @@ -95,7 +95,7 @@ services: app: user: "${DOCKER_USER:-1000}" - image: lasuite/drive-frontend:v0.21.0 + image: lasuite/drive-frontend:v0.21.2 networks: - backend deploy: @@ -116,7 +116,7 @@ services: backend: user: ${DOCKER_USER:-1000} - image: lasuite/drive-backend:v0.21.0 + image: lasuite/drive-backend:v0.21.2 command: [ "gunicorn", "-c", "/usr/local/etc/gunicorn/drive.py", "drive.wsgi:application" ] 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: user: ${DOCKER_USER:-1000} - image: lasuite/drive-backend:v0.21.0 + image: lasuite/drive-backend:v0.21.2 networks: - backend command: [ "celery", "-A", "drive.celery_app", "worker", "-l", "INFO" ] @@ -167,7 +167,7 @@ services: celery-beat: user: ${DOCKER_USER:-1000} - image: lasuite/drive-backend:v0.21.0 + image: lasuite/drive-backend:v0.21.2 networks: - backend command: [ "celery", "-A", "drive.celery_app", "beat", "-l", "INFO", "--schedule", "/tmp/celerybeat-schedule" ]