Skip to content
Open
15 changes: 14 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -151,11 +151,24 @@ docker pull ghcr.io/open-rmf/rmf/rmf_demos:latest
docker tag ghcr.io/open-rmf/rmf/rmf_demos:latest rmf:latest
```

If you do not have the models already then download the models locally to your Host system from

[Gazebo Sim Dashboard](https://app.gazebosim.org/dashboard)

Run it!
Replace /Location/To/Your/Models - With your actual location
Alternatively, you can use the `docker cp` command to copy the folder into the Docker container. For more information on how to use the `docker cp` command, refer to the [Docker documentation](https://docs.docker.com/engine/reference/commandline/cp/).
If you do not have the models already then download the models locally to your Host system from

[Gazebo Sim Dashboard](https://app.gazebosim.org/dashboard)

Run it
Replace /Location/To/Your/Models - With your actual location
Alternatively, you can use the `docker cp` command to copy the folder into the Docker container. For more information on how to use the `docker cp` command, refer to the [Docker documentation](https://docs.docker.com/engine/reference/commandline/cp/).

```bash

docker run -it --network host rmf:latest bash -c "export ROS_DOMAIN_ID=9; ros2 launch rmf_demos_gz office.launch.xml headless:=1"
docker run -v /Location/To/Your/Models/OpenRobotics:/root/.gazebo/models -it --network host rmf:latest bash -c "export ROS_DOMAIN_ID=9; ros2 launch rmf_demos_gz office.launch.xml headless:=1"
```

This will run `rmf_demos` in headless mode.
Expand Down
Loading