Skip to content

Commit

Permalink
add pkg
Browse files Browse the repository at this point in the history
  • Loading branch information
wangzheng422 committed Dec 26, 2024
1 parent cf7f642 commit d9b13ec
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions redhat/ocp4/4.16/2024.12.llama.factory.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,32 @@ podman run --rm -it quay.io/wangzheng422/qimgs:llama-factory-20241225-v01 /bin/b

podman push quay.io/wangzheng422/qimgs:llama-factory-20241225-v01

```

## try run multiple instances of the LLaMA factory

We have successfully set up the environment and built the container image, next, we will try to run multiple instances of the LLaMA factory using docker/podman.

```bash
# create a pod network
podman network create llama-factory-network --subnet 10.5.0.0/24

podman pod create --name llama-factory-pod --network llama-factory-network


# first instance
mkdir -p /data/instance/01
cd /data/instance/01

podman run --rm -it --pod llama-factory-pod \
--network llama-factory-network \
--ip 10.5.0.1 \
quay.io/wangzheng422/qimgs:llama-factory-20241225-v01 \
/bin/bash




```


Expand Down

0 comments on commit d9b13ec

Please sign in to comment.