On Mac M1 docker ps -q --filter doesn't exit, so whole ./scripts/sim.py build freezes
Opened this issue · 0 comments
frontw commented
I fixed architecture check issue #73 locally in _get_docker_architecture
if 'aarch64' in architecture or 'arm64' in architecture:
docker_architecture = 'arm64'
Next issue I have is freeze of script (with no any message). Pressing ctrl+c gives me idea, that it freezes in model.py, line 33, in update (self.id = DockerWrapper.get_container_id_by_image_name(self.full_name).
When debugging I found the issue is that docker ps
with -q
and -- filter
options don't exit in my machine and all script freezes. So I think timeout check should be added