https://github.com/tymek/tunnel
Remote SSH Tunel server with key authentication.
https://github.com/tymek/tunnel
Last synced: 28 days ago
JSON representation
Remote SSH Tunel server with key authentication.
- Host: GitHub
- URL: https://github.com/tymek/tunnel
- Owner: Tymek
- Created: 2019-03-23T14:26:58.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2025-06-02T13:32:36.000Z (about 1 month ago)
- Last Synced: 2025-06-17T23:41:26.649Z (28 days ago)
- Language: Dockerfile
- Homepage: https://hub.docker.com/r/scrlk/tunnel
- Size: 9.77 KB
- Stars: 5
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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.