Skip to content

Commit 6cb349a

Browse files
docs: add details on how to use custom YAML in the docs
Signed-off-by: Nathan Weinberg <nweinber@redhat.com>
1 parent cd60705 commit 6cb349a

1 file changed

Lines changed: 15 additions & 0 deletions

File tree

README.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,3 +53,18 @@ Various tags are maintained for this image:
5353
- `rhoai-v*-latest` will always point to the latest image that has been built off of a merge to the corresponding `rhoai-v*` branch
5454

5555
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

Comments
 (0)