You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+15Lines changed: 15 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -53,3 +53,18 @@ Various tags are maintained for this image:
53
53
-`rhoai-v*-latest` will always point to the latest image that has been built off of a merge to the corresponding `rhoai-v*` branch
54
54
55
55
You can see the source code that implements this build strategy [here](.github/workflows/redhat-distro-container.yml)
56
+
57
+
### Running with a custom run YAML
58
+
59
+
The distribution image allows you to run a custom run YAML file within it. To do so, run the image in the following way. The "path" mentioned should be the path to your custom run YAML file.
60
+
61
+
```bash
62
+
podman run \
63
+
-p 8321:8321 \
64
+
-v <path_on_host>:<path_in_container> \
65
+
quay.io/opendatahub/llama-stack:<tag> \
66
+
<path_in_container>
67
+
```
68
+
69
+
> [!IMPORTANT]
70
+
> The distribution image ships with various dependencies already pre-installed. There is *no* guarantee that your custom run YAML will necessarily work with the included dependencies.
0 commit comments