Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/tymek/tunnel
- Owner: Tymek
- Created: 2019-03-23T14:26:58.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2024-09-19T12:55:54.000Z (4 months ago)
- Last Synced: 2024-11-26T10:24:24.591Z (about 2 months ago)
- Language: Dockerfile
- Homepage: https://hub.docker.com/r/scrlk/tunnel
- Size: 6.84 KB
- Stars: 5
- Watchers: 2
- 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.