You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/modules/usage/custom_sandbox_guide.md
+7-3Lines changed: 7 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,4 @@
1
-
# How to Create a Custom Docker Sandbox
1
+
# 💿 How to Create a Custom Docker Sandbox
2
2
3
3
The default OpenDevin sandbox comes with a [minimal ubuntu configuration](https://github.com/OpenDevin/OpenDevin/blob/main/containers/sandbox/Dockerfile). Your use case may need additional software installed by default. This guide will teach you how to accomplish this by utilizing a custom docker image.
4
4
@@ -10,6 +10,9 @@ To get started running with your own Docker Sandbox image you need to ensure you
10
10
3. Then run ```make run```
11
11
4. Finally navigate your browser to ```localhost:3001``` to ensure that your local build of OpenDevin is functional
12
12
13
+
14
+
Please refer to [Development.md](https://github.com/OpenDevin/OpenDevin/blob/main/Development.md) for more installation details.
15
+
13
16
> Note that the above steps will take some time to run and will require that your have python3.11, poetry (a python package manager), and Docker installed
14
17
15
18
@@ -101,8 +104,9 @@ sandbox_user_id="1001"
101
104
```
102
105
103
106
### Port use errors
104
-
If you see an error about a port being in use or unavailable, try deleting all running Docker Containers and then re-running ```make run```
107
+
108
+
If you see an error about a port being in use or unavailable, try deleting all running Docker Containers (run `docker ps` and `docker rm` relevant containers) and then re-running ```make run```
105
109
106
110
## Discuss
107
111
108
-
For other issues or questions join the [Slack](https://join.slack.com/t/opendevin/shared_invite/zt-2jsrl32uf-fTeeFjNyNYxqSZt5NPY3fA) or [Discord](https://discord.gg/ESHStjSjD4) and ask!
112
+
For other issues or questions join the [Slack](https://join.slack.com/t/opendevin/shared_invite/zt-2jsrl32uf-fTeeFjNyNYxqSZt5NPY3fA) or [Discord](https://discord.gg/ESHStjSjD4) and ask!
0 commit comments