Skip to content
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

Support non-root Docker images in Vast.ai #2185

Merged
merged 1 commit into from
Jan 13, 2025
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion examples/deployment/nim/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ The source-code of this example can be found in
[`examples/deployment/nim` :material-arrow-top-right-thin:{ .external }](https://github.com/dstackai/dstack/blob/master/examples/deployment/nim){:target="_blank"}.

??? warning "Limitations"
NIM isn't working yet with `runpod` and `vastai` backends.
NIM doesn't work yet with the `runpod` backend.
Track the [issue :material-arrow-top-right-thin:{ .external }](https://github.com/dstackai/dstack/issues/1535){:target="_blank"} for progress.

## What's next?
Expand Down
1 change: 1 addition & 0 deletions src/dstack/_internal/core/backends/vastai/api_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ def create_instance(
"env": {
"-p 10022:10022": "1",
},
"user": "root",
"onstart": "/bin/sh",
"args": ["-c", onstart],
"runtype": "args",
Expand Down
Loading