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 <jimsu@protonmail.com>
This commit is contained in:
Jens Roland 2024-05-11 23:48:45 +02:00 committed by GitHub
parent 3abdc231c4
commit 6a18cafa40
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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
```