From 5d04bdeb5b779050d87c539d9a6dae4b61724cae Mon Sep 17 00:00:00 2001 From: Valentin Date: Tue, 19 Dec 2023 16:39:34 +0100 Subject: [PATCH 1/2] docs(app): docker add step to open gateway for remote Addng a step to set GateWay true to use ray in remote --- docs/environment-specific-configuration/docker.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/docs/environment-specific-configuration/docker.md b/docs/environment-specific-configuration/docker.md index 687ba66..36eb68e 100644 --- a/docs/environment-specific-configuration/docker.md +++ b/docs/environment-specific-configuration/docker.md @@ -82,3 +82,16 @@ services: extra_hosts: - "host.docker.internal:host-gateway" ``` + +You will, probably need to open your *GatewayPorts* inside your ssh config. + +Go to your ssh config : + +```shell +nano /etc/hosts/sshd_config +``` + +Search for *GatewayPorts* and set him from **no** to **yes** +```text +GatewayPorts yes +``` From ed608114da70a3b9df86d1f016edefd0678c44e8 Mon Sep 17 00:00:00 2001 From: Freek Van der Herten Date: Thu, 21 Dec 2023 11:02:14 +0100 Subject: [PATCH 2/2] Update docker.md --- docs/environment-specific-configuration/docker.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/environment-specific-configuration/docker.md b/docs/environment-specific-configuration/docker.md index 36eb68e..d6c86ba 100644 --- a/docs/environment-specific-configuration/docker.md +++ b/docs/environment-specific-configuration/docker.md @@ -83,9 +83,9 @@ services: - "host.docker.internal:host-gateway" ``` -You will, probably need to open your *GatewayPorts* inside your ssh config. +If it does not work after that, you could try to open your *GatewayPorts* inside your ssh config. -Go to your ssh config : +Go to your SSH config: ```shell nano /etc/hosts/sshd_config