Hi folks, I am trying to connect to docker which i...
# general
b
Hi folks, I am trying to connect to docker which is running on GCP - VM using docker provider. But its getting failed to due to connection establishment. Is there anyway we can pass remote connection args to it or is there anyway I can establish the connection ?
Copy code
const remoteInstance = new docker.Provider(
  "remote",
  {
    host: interpolate`<ssh://user>@${externalIP}:22`,
  },
  { dependsOn: dockerInstallation }
);