25 lines
256 B
Markdown
25 lines
256 B
Markdown
|
|
# SSH Server
|
||
|
|
|
||
|
|
A simple SSH server implemented in Go.
|
||
|
|
|
||
|
|
## Installation
|
||
|
|
|
||
|
|
Clone the repository and build with Go:
|
||
|
|
|
||
|
|
```bash
|
||
|
|
go build -o ssh-server main.go
|
||
|
|
```
|
||
|
|
|
||
|
|
## Usage
|
||
|
|
|
||
|
|
Run the server:
|
||
|
|
|
||
|
|
```bash
|
||
|
|
./ssh-server
|
||
|
|
```
|
||
|
|
|
||
|
|
Or using Docker:
|
||
|
|
|
||
|
|
```bash
|
||
|
|
docker-compose up
|
||
|
|
```
|