Skip to content

Commit fa0a946

Browse files
authored
docs: revert "revert "add artifacts path to run command (#648)" (#652)" (#659)
* docs: revert "revert "add artifacts path to run command (#648)" (#652)" This reverts commit 062c240. Signed-off-by: Amadeusz Szymko <amadeusz.szymko.2@tier4.jp> * docs: clarify data-path arg Signed-off-by: Amadeusz Szymko <amadeusz.szymko.2@tier4.jp> --------- Signed-off-by: Amadeusz Szymko <amadeusz.szymko.2@tier4.jp>
1 parent 204685f commit fa0a946

File tree

1 file changed

+9
-4
lines changed

1 file changed

+9
-4
lines changed

docs/installation/autoware/docker-installation.md

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,12 @@ Open AD Kit offers two types of Docker image to let you get started with Autowar
3434
./setup-dev-env.sh -y --no-nvidia docker
3535
```
3636

37+
To download only the artifacts:
38+
39+
```bash
40+
./setup-dev-env.sh -y download_artifacts
41+
```
42+
3743
!!! info
3844

3945
GPU acceleration is required for some features such as object detection and traffic light detection/classification. For details of how to enable these features without a GPU, refer to the [Running Autoware without CUDA](../../how-to-guides/others/running-autoware-without-cuda.md).
@@ -42,19 +48,18 @@ Open AD Kit offers two types of Docker image to let you get started with Autowar
4248

4349
### Runtime
4450

45-
You can use `run.sh` to run the Autoware runtime container with the map data:
51+
You can use `run.sh` to run the Autoware runtime container with the map and data (artifacts) paths:
4652

4753
```bash
48-
./docker/run.sh --map-path path_to_map_data
54+
./docker/run.sh --map-path path_to_map --data-path path_to_data
4955
```
5056

5157
For more launch options, you can append a custom launch command instead of using the default launch command which is `ros2 launch autoware_launch autoware.launch.xml`.
5258

5359
Here is an example of running the runtime container with a custom launch command:
5460

5561
```bash
56-
./docker/run.sh --map-path ~/autoware_map/sample-map-rosbag ros2 launch autoware_launch planning_simulator.launch.xml map_path:=/autoware_map vehicle_model:=sample_vehicle sensor_model:=sample_sensor_kit
57-
62+
./docker/run.sh --map-path ~/autoware_map/sample-map-rosbag --data-path ~/autoware_data ros2 launch autoware_launch planning_simulator.launch.xml map_path:=/autoware_map vehicle_model:=sample_vehicle sensor_model:=sample_sensor_kit
5863
```
5964

6065
!!! info

0 commit comments

Comments
 (0)