Add Readme and remove docker-compose volumes
All checks were successful
Build and Push Docker Image / build-and-push (push) Successful in 10s

This commit is contained in:
2025-11-06 15:39:26 +01:00
parent 4acd92e8e7
commit 2e40d02605
2 changed files with 26 additions and 3 deletions

25
README.md Normal file
View File

@@ -0,0 +1,25 @@
# 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
```