tools: when running compose use --build

This commit is contained in:
tylen 2025-06-05 00:55:17 +03:00
parent 69ee84814f
commit 9fad63f206

View File

@ -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