You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
The text was updated successfully, but these errors were encountered:
I fixed architecture check issue #73 locally in _get_docker_architecture
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 addedThe text was updated successfully, but these errors were encountered: