From 7004b7e2c8034d58993d099f4ab2d1c7aa21244f Mon Sep 17 00:00:00 2001 From: lebaudantoine Date: Wed, 17 Sep 2025 14:56:02 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7(summary)=20introduce=20watch=20sec?= =?UTF-8?q?tion=20to=20Docker=20Compose=20file?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Add watch configuration to Docker Compose file enabling compose watch mode for Docker Compose 2.22+. This enhances developer experience on Visio by providing automatic file synchronization and hot reloading during development on the celery workers. --- compose.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/compose.yml b/compose.yml index dfdab5ad..c734bf68 100644 --- a/compose.yml +++ b/compose.yml @@ -258,6 +258,10 @@ services: - redis-summary - app-summary-dev - minio + develop: + watch: + - action: rebuild + path: ./src/summary celery-summary-summarize: container_name: celery-summary-summarize @@ -274,3 +278,7 @@ services: - redis-summary - app-summary-dev - minio + develop: + watch: + - action: rebuild + path: ./src/summary