GitXplorerGitXplorer
a

isaac_sdk_docker

public
22 stars
6 forks
0 issues

Commits

List of commits on branch master.
Unverified
cbace9604472e1f52f2189607e55760ec1ee2d73

Update issue templates

aatinfinity committed 4 years ago
Unverified
ae2d302d5e2ff82b27024702215c03cd200d975a

Update issue templates

aatinfinity committed 4 years ago
Verified
6a7f94b112bcd0d16a3031cbf2377152cb736352

Merge pull request #3 from atinfinity/updated-20200527

aatinfinity committed 5 years ago
Unverified
3632cb027ea4502fe23edefe1d2b9e1eb3bb64fc

updated README.md

aatinfinity committed 5 years ago
Unverified
93fb3a2a2f1b740de97fac2959fcbe252488e891

changed Dockerfile to support Isaac SDK 2020.1

aatinfinity committed 5 years ago
Unverified
7609ca7f21a02d3358626d99ebfa29a0f01fccf7

fixed typo

aatinfinity committed 5 years ago

README

The README file for this repository.

isaac_sdk_docker

Introduction

This is Dockerfile to use NVIDIA Isaac SDK on Docker container.

Requirements

  • NVIDIA graphics driver >= 440.0
  • Docker
  • nvidia-docker2

Preparation

Download NVIDIA Isaac SDK

Please download NVIDIA Isaac SDK from https://developer.nvidia.com/isaac-sdk.
And, please put NVIDIA Isaac SDK in the same directory as the Dockerfile.
This time, I used the following package.

  • isaac-sdk-20200527-0159e2bab.tar.xz
  • isaac_sim_unity3d-20200527-a8205d23.tar.xz

Build Docker image

$ docker build -t isaac_sdk .

Create Docker container

$ ./launch_container.sh

Running sample application

Build sample application

$ cd ~/isaac_sdk
$ bazel build //apps/samples/stereo_dummy

Running sample application

$ bazel run //apps/samples/stereo_dummy

Open the visualization

Please open the visualization frontend by opening http://localhost:3000. in a browser.

Running IsaacSim and Carter navigation stack

Running IsaacSim

$ cd ~/isaac_sim_unity3d/builds
$ ./sample.x86_64 --scene small_warehouse -logFile -

Running Carter navigation stack

$ cd ~/isaac_sdk
$ bazel run //apps/navsim:navsim_navigate

Open the visualization

Please open the visualization frontend by opening http://localhost:3000 in a browser.

Reference