Compare commits

...

3 Commits

Author SHA1 Message Date
Mauricio Siu
727e50648e Merge pull request #501 from Dokploy/canary
v0.9.3
2024-09-29 16:30:43 -06:00
Mauricio Siu
0b2b20caeb chore(version): bump version 2024-09-29 16:24:35 -06:00
Mauricio Siu
6cc64b4454 refactior(terminal): add port to server connect 2024-09-29 16:24:09 -06:00
2 changed files with 3 additions and 1 deletions

View File

@@ -1,6 +1,6 @@
{ {
"name": "dokploy", "name": "dokploy",
"version": "v0.9.2", "version": "v0.9.3",
"private": true, "private": true,
"license": "Apache-2.0", "license": "Apache-2.0",
"type": "module", "type": "module",

View File

@@ -72,6 +72,8 @@ export const setupTerminalWebSocketServer = (
"StrictHostKeyChecking=no", "StrictHostKeyChecking=no",
"-i", "-i",
privateKey, privateKey,
"-p",
`${server.port}`,
`${server.username}@${server.ipAddress}`, `${server.username}@${server.ipAddress}`,
]; ];
const ptyProcess = spawn("ssh", sshCommand.slice(1), { const ptyProcess = spawn("ssh", sshCommand.slice(1), {