diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..1bf30d8 --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,14 @@ +version: '3.8' + +services: + ssh-timeout: + build: + context: . + dockerfile: Dockerfile + image: ssh-timeout-image + ports: + - "2222:2222" + environment: + SSH_BACKEND: "your-backend-ip:port" + SSH_MAX_DURATION: "600" + LISTEN_ADDR: ":2222" \ No newline at end of file