From 9fad63f2061d73d400d1a51914f82269e775ab7c Mon Sep 17 00:00:00 2001 From: tylen Date: Thu, 5 Jun 2025 00:55:17 +0300 Subject: [PATCH] tools: when running compose use --build --- services/tools/cli/docker_service.py | 1 + 1 file changed, 1 insertion(+) diff --git a/services/tools/cli/docker_service.py b/services/tools/cli/docker_service.py index 04cb364..8386182 100755 --- a/services/tools/cli/docker_service.py +++ b/services/tools/cli/docker_service.py @@ -76,6 +76,7 @@ class DockerServiceCLI(BaseCli): command_str.append('--env-file') command_str.append(f'{service.env_file}') command_str.append('up') + command_str.append('--build') command_str.append('-d') self.info(f"Executing command: {' '.join(command_str)}") return command_str