Initial commit with Dockerfile and Go code

This commit is contained in:
2025-11-06 14:43:35 +01:00
commit 1f0cd36375
6 changed files with 213 additions and 0 deletions

11
docker-compose.yml Normal file
View File

@@ -0,0 +1,11 @@
services:
ssh-server:
image: ssh-server
build: .
ports:
- "22:22"
volumes:
- ../tui:/app/tui:ro
cap_add:
- SYS_CHROOT
restart: unless-stopped