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
Pretty much every interaction in dockerblade involves issuing a docker exec call. On my system, the overhead of a single docker exec call via docker-py appears to be on the order of several 100ms. This is much too slow.
Instead, we could use docker exec to launch an SSH server inside the container. The dockerblade API could then be implemented by interacting with that SSH server via Paramiko rather than issuing docker exec calls.
The text was updated successfully, but these errors were encountered:
Pretty much every interaction in dockerblade involves issuing a
docker exec
call. On my system, the overhead of a singledocker exec
call viadocker-py
appears to be on the order of several 100ms. This is much too slow.Instead, we could use
docker exec
to launch an SSH server inside the container. The dockerblade API could then be implemented by interacting with that SSH server via Paramiko rather than issuingdocker exec
calls.The text was updated successfully, but these errors were encountered: