Remote SSH Tunel server with key authentication.
10K+
Remote SSH Tunel server with key authentication.
Example client command: ssh -N -R 8080:localhost:80 -p 2222 [email protected]
Example docker-compose.yml:
version: '3.6'
services:
relay:
image: scrlk/tunnel
restart: always
environment:
AUTHORIZED_KEYS: ${AUTHORIZED_KEYS:-}
ports:
- "2222:22"
- "8080:80"
volumes:
- ./data/relay:/srv
You can also use redirected ports inside docker network, without publishing them.
Content type
Image
Digest
Size
4.9 MB
Last updated
over 5 years ago
docker pull scrlk/tunnel