Sign inSign up

scrlk/tunnel

By scrlk

•Updated over 5 years ago

Remote SSH Tunel server with key authentication.

Image
1

10K+

scrlk/tunnel repository overview

⁠scrlk/tunnel

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.

Tag summary

Content type

Image

Digest

Size

4.9 MB

Last updated

over 5 years ago

docker pull scrlk/tunnel