Sshocker
ssh + reverse sshfs + port forwarder, in Docker-like CLI (predecessor of Lima)
Install / Use
/learn @lima-vm/SshockerREADME
sshocker: ssh + reverse sshfs + port forwarder, in Docker-like CLI
$ sshocker -p 8080:80 -v .:/mnt/sshfs user@example.com
- Forward connections to the port 8080 on the client to the port 80 on
example.com - Mount the current directory on the client as
/mnt/sshfsonexample.com
This is akin to docker run -p 8080:80 -v $(pwd):/mnt IMAGE, but sshocker is for remote hosts, not for containers.
Install
Download from https://github.com/lima-vm/sshocker/releases .
To download using curl:
curl -o sshocker --fail -L https://github.com/lima-vm/sshocker/releases/latest/download/sshocker-$(uname -s)-$(uname -m)
chmod +x sshocker
To compile from source:
make
sudo make install
Tested on macOS client and Linux server. May not work on other environments, especially on Windows.
To use reverse sshfs, sshfs needs to be installed on the server (not on the client):
$ ssh user@example.com -- sudo apt-get install -y sshfs
Usage
Global flags:
--debug=(true|false)(default:false): debug mode
Subcommand: run (default)
sshocker's equivalent of docker run.
e.g.
$ sshocker run -p 8080:80 -v .:/mnt/sshfs user@example.com
run can be omitted, e.g.
$ sshocker -p 8080:80 -v .:/mnt/sshfs user@example.com
Flags (similar to docker run flags):
-v LOCALDIR:REMOTEDIR[:ro]: Mount a reverse SSHFS-p [[LOCALIP:]LOCALPORT:]REMOTEPORT: Expose a port
SSH flags:
-F,--ssh-config=FILE: specify SSH config file used forssh -F--ssh-persist=(true|false)(default:true): enable ControlPersist
SSHFS flags:
--sshfs-noempty(default:false): enable sshfs nonempty
SFTP server flags:
--driver=DRIVER(default:auto): SFTP server driver.builtin(legacy) oropenssh-sftp-server(robust and secure, recommended).openssh-sftp-serveris chosen by default when the OpenSSH SFTP Server binary is detected.--openssh-sftp-server=BINARY: OpenSSH SFTP Server binary. Automatically detected when installed in well-known locations such as/usr/libexec/sftp-server.
Subcommand: help
Shows help
Related Skills
node-connect
335.2kDiagnose OpenClaw node connection and pairing failures for Android, iOS, and macOS companion apps
frontend-design
82.5kCreate distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, or applications. Generates creative, polished code that avoids generic AI aesthetics.
openai-whisper-api
335.2kTranscribe audio via OpenAI Audio Transcriptions API (Whisper).
commit-push-pr
82.5kCommit, push, and open a PR
