File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -108,21 +108,21 @@ git clone https://github.com/zjunlp/OneKE.git
108
108
```
109
109
2 . Pull the docker image from the mirror repository.
110
110
``` bash
111
- docker pull zjunlp/oneke:v2
111
+ docker pull zjunlp/oneke:v4
112
112
# If you encounter network issues, consider setting up domestic registry mirrors for docker.
113
113
```
114
114
3 . Launch a container from the image.
115
115
``` bash
116
116
docker run --gpus all \
117
117
-v ./OneKE:/app/OneKE \
118
- -it oneke:v2 /bin/bash
118
+ -it oneke:v4 /bin/bash
119
119
```
120
120
If using locally deployed models, ensure the local model path is mapped to the container:
121
121
``` bash
122
122
docker run --gpus all \
123
123
-v ./OneKE:/app/OneKE \
124
124
-v your_local_model_path:/app/model/your_model_name \
125
- -it oneke:v2 /bin/bash
125
+ -it oneke:v4 /bin/bash
126
126
```
127
127
Map any ** necessary local files** to the container paths as shown above, and use ** container paths** in your code and execution.
128
128
You can’t perform that action at this time.
0 commit comments