Skip to content

fix: update docker installation #550

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 2 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 17 additions & 10 deletions docs/installation/autoware/docker-installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,17 +15,24 @@ Open AD Kit offers two types of Docker image to let you get started with Autowar
- NVIDIA Container Toolkit (preferred)
- NVIDIA CUDA 12 compatible GPU Driver (preferred)

The [setup script](https://github.com/autowarefoundation/autoware/blob/main/setup-dev-env.sh) will install all required dependencies with the setup script:
1. Clone `autowarefoundation/autoware` and move to the directory.

```bash
./setup-dev-env.sh -y docker
```
```bash
git clone https://github.com/autowarefoundation/autoware.git
cd autoware
```

To install without **NVIDIA GPU** support:
2. The [setup script](https://github.com/autowarefoundation/autoware/blob/main/setup-dev-env.sh) will install all required dependencies with the setup script:

```bash
./setup-dev-env.sh -y --no-nvidia docker
```
```bash
./setup-dev-env.sh -y docker
```

To install without **NVIDIA GPU** support:

```bash
./setup-dev-env.sh -y --no-nvidia docker
```

!!! info

Expand Down Expand Up @@ -62,12 +69,12 @@ Inside the container, you can run the Autoware tutorials by following these link
### Development setup

```bash
./docker/run.sh --devel
./docker/run.sh --devel --workspace path_to_workspace --map-path path_to_map_data
```

!!! info

By default workspace mounted on the container will be current directory, you can change the workspace path by `--workspace path_to_workspace`. For development environments without NVIDIA GPU support use `--no-nvidia`.
For development environments without NVIDIA GPU support use `--no-nvidia`.

#### How to set up a workspace

Expand Down
Loading