Skip to content

Commit

Permalink
fix(aloha_ws): Separate standalone script and direct launch cache
Browse files Browse the repository at this point in the history
  • Loading branch information
j3soon committed Sep 20, 2024
1 parent e962222 commit d24f0a1
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions aloha_ws/docker/compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ services:
command: bash -c "
mkdir -p /isaac-sim/cache/{kit,ov,pip,glcache,computecache} &&
mkdir -p /isaac-sim/{logs,data,documents} &&
mkdir -p /isaac-sim/standalone/cache/ov &&
mkdir -p /isaac-sim/standalone/{logs,data} &&
chown -R 1000:1000 /isaac-sim"
volumes:
- isaac-sim-cache:/isaac-sim
Expand Down Expand Up @@ -90,7 +92,7 @@ services:
source: isaac-sim-cache
target: /home/user/.local/lib/python3.10/site-packages/omni/cache # For Isaac Sim standalone
volume:
subpath: cache/ov
subpath: standalone/cache/ov
- type: volume
source: isaac-sim-cache
target: /home/user/.cache/pip
Expand All @@ -115,7 +117,7 @@ services:
source: isaac-sim-cache
target: /home/user/.local/lib/python3.10/site-packages/omni/logs # For Isaac Sim standalone
volume:
subpath: logs
subpath: standalone/logs
- type: volume
source: isaac-sim-cache
target: /home/user/.local/share/ov/data
Expand All @@ -125,7 +127,7 @@ services:
source: isaac-sim-cache
target: /home/user/.local/lib/python3.10/site-packages/omni/data # For Isaac Sim standalone
volume:
subpath: data
subpath: standalone/data
- type: volume
source: isaac-sim-cache
target: /home/user/Documents
Expand Down

0 comments on commit d24f0a1

Please sign in to comment.