We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Currently sshfs and sftp and scp will not work correctly:
scp ./linux.iso core@pi4-1:~/ # scp: Connection closed
Rsync works correctly, because it starts a separate TCP server:
rsync -rav --progress ./linux.iso core@pi4-1:~/
The SSH channels - for example sftp - are not forwarded into the container. Currently skiff-core just knows how to forward the stdin/stdout streams into the container via docker exec: https://github.com/skiffos/skiff-core/blob/master/shell/shell.go#L96
docker exec
This issue tracks adding support for ssh channels to skiff-core.
Workaround: use rsync instead, or run a sshd instance inside the container on a different port.
rsync
sshd
The text was updated successfully, but these errors were encountered:
paralin
No branches or pull requests
Currently sshfs and sftp and scp will not work correctly:
Rsync works correctly, because it starts a separate TCP server:
The SSH channels - for example sftp - are not forwarded into the container. Currently skiff-core just knows how to forward the stdin/stdout streams into the container via
docker exec
: https://github.com/skiffos/skiff-core/blob/master/shell/shell.go#L96This issue tracks adding support for ssh channels to skiff-core.
Workaround: use
rsync
instead, or run asshd
instance inside the container on a different port.The text was updated successfully, but these errors were encountered: