diff --git a/README.md b/README.md new file mode 100644 index 0000000..81a64cb --- /dev/null +++ b/README.md @@ -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 +``` \ No newline at end of file diff --git a/docker-compose.yml b/docker-compose.yml index 025cece..f040c1b 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,10 +1,8 @@ services: ssh-server: - image: dcorral/ssh-remote:latest + image: dcorral3/go-ssh-server-command:latest ports: - "22:22" - volumes: - - ../tui:/app/tui:ro cap_add: - SYS_CHROOT environment: