Skip to content

Commit e6d9832

Browse files
committed
fix: add network settings to docker run
1 parent 10914eb commit e6d9832

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/setup_docker.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -29,13 +29,13 @@ docker build -t rai:jazzy --build-arg ROS_DISTRO=jazzy -f docker/Dockerfile .
2929
### 2.1. Humble
3030

3131
```bash
32-
docker run -it -v $(pwd):/rai rai:humble
32+
docker run --net=host --ipc=host --pid=host -it -v $(pwd):/rai rai:humble
3333
```
3434

3535
### 2.2. Jazzy
3636

3737
```bash
38-
docker run -it -v $(pwd):/rai rai:jazzy
38+
docker run --net=host --ipc=host --pid=host -it -v $(pwd):/rai rai:jazzy
3939
```
4040

4141
## 3. Run the tests to confirm the setup

0 commit comments

Comments
 (0)