A lightweight SSH server for easy port forwarding
make run
You may bind the SSH daemon to a different port (2222 in the example) and mount a volume containing the servers keys and authorized_keys for the root user.
docker run --init --rm --name ssh-gateway -p 2222:22 -v /path/to/volume:/config:ro connesc/ssh-gateway
make build