From 0069747eb33522d38b897534cb8f347e9f1fce6a Mon Sep 17 00:00:00 2001 From: charleswrayjr Date: Thu, 4 Sep 2025 05:12:01 -0500 Subject: [PATCH] Fixing ssh connection. --- src/controllers/git.controller.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/controllers/git.controller.js b/src/controllers/git.controller.js index 6bfaaf5..f0ef4bd 100644 --- a/src/controllers/git.controller.js +++ b/src/controllers/git.controller.js @@ -1,7 +1,7 @@ const fs = require('fs'); const { Client } = require('ssh2'); const sshConfig = { - host: 'host.docker.internal', + host: '10.8.0.1', port: 22, username: 'git', privateKey: fs.readFileSync('/home/git/.ssh/git-ui'), -- 2.43.0