Files
go-ssh-server/README.md
dcorral 2e40d02605
All checks were successful
Build and Push Docker Image / build-and-push (push) Successful in 10s
Add Readme and remove docker-compose volumes
2025-11-06 15:39:26 +01:00

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