Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/tymek/tunnel

Remote SSH Tunel server with key authentication.
https://github.com/tymek/tunnel

Last synced: about 2 months ago
JSON representation

Remote SSH Tunel server with key authentication.

Awesome Lists containing this project

README

        

# 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`:

``` 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.