From 4db604a3a4df7a4b40b678dbdcf5e893c6d30ed4 Mon Sep 17 00:00:00 2001 From: hajimi Date: Sun, 2 Aug 2026 12:12:35 +0800 Subject: [PATCH] fix: reuse production images across worker services --- docker/docker-compose.prod.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/docker/docker-compose.prod.yml b/docker/docker-compose.prod.yml index c6654b5..90f5fe4 100644 --- a/docker/docker-compose.prod.yml +++ b/docker/docker-compose.prod.yml @@ -60,6 +60,9 @@ services: scheduler: <<: *php-service + # Reuse the server PHP image; building the same tag concurrently causes + # BuildKit export collisions during a full production bootstrap. + build: null command: - sh - -c @@ -70,6 +73,8 @@ services: kb-worker: <<: *crawler-service + # Reuse the crawler image built by the crawler service. + build: null command: - python - scripts/kb_worker.py