From 6a18cafa40a50a0cfb5dd1d798bc6b55af100897 Mon Sep 17 00:00:00 2001 From: Jens Roland Date: Sat, 11 May 2024 23:48:45 +0200 Subject: [PATCH] docs: fixed typo in launch command (#1724) The argument `--add-host host.docker.internal:host-gateway` should be `--add-host host.docker.internal=host-gateway` (with an `=` character). Solves `Error creating controller: Could not establish connection to host` errors. Co-authored-by: Jim Su --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5c9acd4de3..a8a0869b3b 100644 --- a/README.md +++ b/README.md @@ -59,7 +59,7 @@ docker run \ -v $WORKSPACE_BASE:/opt/workspace_base \ -v /var/run/docker.sock:/var/run/docker.sock \ -p 3000:3000 \ - --add-host host.docker.internal:host-gateway \ + --add-host host.docker.internal=host-gateway \ ghcr.io/opendevin/opendevin:0.5 ```