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

View File

@@ -1,10 +1,8 @@
services: services:
ssh-server: ssh-server:
image: dcorral/ssh-remote:latest image: dcorral3/go-ssh-server-command:latest
ports: ports:
- "22:22" - "22:22"
volumes:
- ../tui:/app/tui:ro
cap_add: cap_add:
- SYS_CHROOT - SYS_CHROOT
environment: environment: