Replace all instances of OPENDEVIN_WORKSPACE with WORKSPACE_BASE (#2418)

* Replace all instances of OPENDEVIN_WORKSPACE with WORKSPACE_BASE

* Update frontend/src/i18n/translation.json

* Update frontend/src/i18n/translation.json

---------

Co-authored-by: OpenDevin <opendevin@opendevin.ai>
Co-authored-by: Yufan Song <33971064+yufansong@users.noreply.github.com>
This commit is contained in:
Graham Neubig
2024-06-13 14:27:56 -04:00
committed by GitHub
parent b2dc177562
commit 48a2f24bf4
2 changed files with 6 additions and 6 deletions

View File

@@ -68,14 +68,14 @@ When you run the following command, files in `./workspace` may be modified or de
:::
```bash
OPENDEVIN_WORKSPACE=$(pwd)/workspace
WORKSPACE_BASE=$(pwd)/workspace
docker run -it \
--pull=always \
-e SANDBOX_USER_ID=$(id -u) \
-e PERSIST_SANDBOX="true" \
-e SSH_PASSWORD="make something up here" \
-e WORKSPACE_MOUNT_PATH=$OPENDEVIN_WORKSPACE \
-v $OPENDEVIN_WORKSPACE:/opt/workspace_base \
-e WORKSPACE_MOUNT_PATH=$WORKSPACE_BASE \
-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 \