Skip to content

Commit 67f267f

Browse files
committed
docs: docker 계층 구조 변경
1 parent 9e3e8f8 commit 67f267f

File tree

5 files changed

+10
-12
lines changed

5 files changed

+10
-12
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ StrideSim is a project based on Isaac Lab. This repository is designed to allow
2323

2424
You can build and run the container using the Dockerfile.
2525

26-
[Docker Installation Guide](DOCKER_INSTALL.md)
26+
[Docker Installation Guide](docker/README.md)
2727

2828
## Local Installation
2929

base_docker/README.md

-5
This file was deleted.
File renamed without changes.
File renamed without changes.

DOCKER_INSTALL.md docker/README.md

+9-6
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ chmod +x NVIDIA-Linux-x86_64-535.129.03.run
1212
sudo ./NVIDIA-Linux-x86_64-535.129.03.run
1313
```
1414

15-
![alt text](Asset/docker_install/image-2.png)
15+
![alt text](../Asset/docker_install/image-2.png)
1616
> I tried to install *nvidia driver-550*, and it also works.
1717
1818
## Docker Installation
@@ -57,17 +57,18 @@ docker run --rm --runtime=nvidia --gpus all ubuntu nvidia-smi
5757
```
5858

5959
## Get NGC Key
60+
6061
You can follow this [official documentation](https://docs.nvidia.com/ngc/gpu-cloud/ngc-user-guide/index.html#generating-api-key) to get the NGC key.
6162

6263
1. Go to [NGC](https://ngc.nvidia.com/signin)
6364

6465
2. Click on the **Setup** button on the top right.
6566

66-
![alt text](Asset/docker_install/image.png)
67+
![alt text](../Asset/docker_install/image.png)
6768

6869
3. Click on the **Generate API Key** button.
6970

70-
![alt text](Asset/docker_install/image-1.png)
71+
![alt text](../Asset/docker_install/image-1.png)
7172

7273
4. Copy the API Key.
7374

@@ -93,13 +94,15 @@ docker pull nvcr.io/nvidia/isaac-sim:4.0.0
9394
First, you need to make base image.
9495

9596
```bash
96-
docker build -t isaac-sim-ros2:humble-4.0.0 base_docker
97+
cd ${StrideSim_DIR}
98+
docker build -t isaac-sim-ros2:humble-4.0.0 -f docker/Dockerfile.isaacsim-humble .
9799
```
98100

99101
Then, build StrideSim Docker Image.
100102

101103
```bash
102-
docker build -t stride-sim:v0.0.2 docker
104+
cd ${StrideSim_DIR}
105+
docker build -t stride-sim:v0.0.2 -f docker/Dockerfile.stridesim .
103106
```
104107

105108
> The reason why we need to build base image is to reduce the build time.
@@ -206,4 +209,4 @@ rm -rf ~/docker/isaac-sim/cache/*
206209
./isaac-sim.sh --allow-root --headless
207210
```
208211

209-
*Back to [README](README.md)*
212+
*Back to [README](../README.md)*

0 commit comments

Comments
 (0)